forked from Swinject/SwinjectStoryboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwinjectStoryboard.podspec
22 lines (21 loc) · 1.05 KB
/
SwinjectStoryboard.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SwinjectStoryboard"
s.version = "2.2.0"
s.summary = "Swinject extension for automatic dependency injection via Storyboard"
s.description = <<-DESC
SwinjectStoryboard is an extension of Swinject to automatically inject dependency to view controllers instantiated by a storyboard.
DESC
s.homepage = "https://github.com/Swinject/SwinjectStoryboard"
s.license = 'MIT'
s.author = 'Swinject Contributors'
s.source = { :git => "https://github.com/Swinject/SwinjectStoryboard.git", :tag => s.version.to_s }
core_files = 'Sources/*.{swift,m,h}'
s.ios.source_files = core_files, 'Sources/iOS-tvOS/*.{swift,h,m}'
s.osx.source_files = core_files, 'Sources/OSX/*.{swift,h,m}'
s.tvos.source_files = core_files, 'Sources/iOS-tvOS/*.{swift,h,m}'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.dependency 'Swinject', '~> 2.7.1'
s.requires_arc = true
end