forked from aomader/OMPromises
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOMPromises.podspec
More file actions
25 lines (22 loc) · 825 Bytes
/
OMPromises.podspec
File metadata and controls
25 lines (22 loc) · 825 Bytes
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
Pod::Spec.new do |s|
s.name = 'OMPromises'
s.version = '0.1.1'
s.summary = 'Promises for iOS & Mac OS X'
s.homepage = 'http://github.com/b52/OMPromises'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Oliver Mader' => 'b52@reaktor42.de' }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source = { :git => 'https://github.com/b52/OMPromises.git', :tag => s.version.to_s }
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |cs|
cs.source_files = 'OMPromises/*.{h,m}'
cs.public_header_files = 'OMPromises/{OMPromises,OMPromise,OMDeferred}.h'
end
s.subspec 'Tests' do |ts|
ts.dependency 'OMPromises/Core'
ts.framework = 'XCTest'
ts.source_files = 'OMPromisesTests/*.{h,m}'
end
end