forked from Swinject/Swinject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwinject.podspec
More file actions
19 lines (18 loc) · 806 Bytes
/
Swinject.podspec
File metadata and controls
19 lines (18 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "Swinject"
s.version = "0.2.1"
s.summary = "Dependency injection framework for Swift"
s.description = <<-DESC
Swinject is a dependency injection framework for Swift, to manage the dependencies of types in your system.
DESC
s.homepage = "https://github.com/Swinject/Swinject"
s.license = 'MIT'
s.author = 'Swinject Contributors'
s.source = { :git => "https://github.com/Swinject/Swinject.git", :tag => s.version.to_s }
s.source_files = 'Swinject/**/*.{swift,h,m}'
s.ios.exclude_files = 'Swinject/OSX'
s.osx.exclude_files = 'Swinject/iOS'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
end