forked from Swinject/SwinjectPropertyLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwinjectPropertyLoader.podspec
More file actions
20 lines (19 loc) · 927 Bytes
/
SwinjectPropertyLoader.podspec
File metadata and controls
20 lines (19 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SwinjectPropertyLoader"
s.version = "1.0.0"
s.summary = "Swinject extension to load property values from resources"
s.description = <<-DESC
SwinjectPropertyLoader is an extension of Swinject to load property values from resources that are bundled with your application/framework.
DESC
s.homepage = "https://github.com/Swinject/SwinjectPropertyLoader"
s.license = 'MIT'
s.author = 'Swinject Contributors'
s.source = { :git => "https://github.com/Swinject/SwinjectPropertyLoader.git", :tag => s.version.to_s }
s.source_files = 'Sources/**/*.{swift,h}'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.dependency 'Swinject', '~> 2.0.0'
s.requires_arc = true
end