-
Notifications
You must be signed in to change notification settings - Fork 143
/
SwinjectStoryboard.podspec
24 lines (23 loc) · 1.17 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
24
Pod::Spec.new do |s|
s.name = "SwinjectStoryboard"
s.version = "2.2.3"
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.swift_versions = '5.0'
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'
s.requires_arc = true
end