-
Notifications
You must be signed in to change notification settings - Fork 6
/
Reliant.podspec
29 lines (23 loc) · 1.23 KB
/
Reliant.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
25
26
27
28
29
Pod::Spec.new do |s|
s.name = 'Reliant'
s.version = '2.4.0'
s.summary = 'Reliant is a light-weight Dependency Injection (DI) framework for Objective-C, both for OS X and iOS.'
s.homepage = 'https://github.com/appfoundry/Reliant'
s.license = 'MIT'
s.authors = { 'Mike Seghers' => 'mike.seghers@appfoundry.be' }
s.source = { :git => 'https://github.com/appfoundry/Reliant.git', :tag => s.version.to_s }
s.private_header_files = 'Reliant/Classes/Runtime/*.h', 'Reliant/Classes/ContextLocator/OCSBoundContextLocatorFactory.h'
s.source_files = 'Reliant/Classes/**/*.{h,m}'
s.ios.deployment_target = '6.0'
s.ios.exclude_files = 'Reliant/Classes/ContextLocator/OSX/*'
s.watchos.deployment_target = '2.0'
s.watchos.exclude_files = 'Reliant/Classes/ContextLocator/OSX/*', 'Reliant/Classes/ContextLocator/iOS/*', 'Reliant/Classes/Categories/UIKit/*'
s.tvos.deployment_target = '9.0'
s.tvos.exclude_files = 'Reliant/Classes/ContextLocator/OSX/*'
s.osx.deployment_target = '10.8'
s.osx.exclude_files = 'Reliant/Classes/Categories/UIKit/*', 'Reliant/Classes/ContextLocator/iOS/*'
s.frameworks = 'Foundation'
s.ios.frameworks = 'UIKit'
s.osx.frameworks = 'AppKit'
s.requires_arc = true
end