forked from Swinject/SwinjectStoryboard
-
Notifications
You must be signed in to change notification settings - Fork 13
/
SwinjectStoryboard.podspec
23 lines (22 loc) · 1.14 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
23
Pod::Spec.new do |s|
s.name = "SwinjectStoryboard"
s.version = "2.2.1"
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 }
objc_files = 'Sources/ObjectiveC/Others/*.{swift,m,h}'
core_files = 'Sources/*.{swift,m,h}'
s.ios.source_files = core_files, objc_files, 'Sources/iOS-tvOS/*.{swift,h,m}'
s.osx.source_files = core_files, objc_files, 'Sources/OSX/*.{swift,h,m}'
s.tvos.source_files = core_files, objc_files, 'Sources/iOS-tvOS/*.{swift,h,m}'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.dependency 'Swinject', '~> 2.7.1'
s.requires_arc = true
end