forked from BoltsFramework/Bolts-ObjC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bolts.podspec
34 lines (29 loc) · 1.52 KB
/
Bolts.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
30
31
32
33
34
Pod::Spec.new do |s|
s.name = 'Bolts'
s.version = '1.9.1'
s.summary = 'Bolts is a collection of low-level libraries designed to make developing mobile apps easier.'
s.description = <<-DESC
Bolts was designed by Parse and Facebook for our own internal use, and we have decided to open source these libraries to make them available to others. Using these libraries does not require using any Parse services. Nor do they require having a Parse or Facebook developer account.
The first component in Bolts is "tasks", which make organization of complex asynchronous code more manageable. A task is kind of like a JavaScript Promise, but available for iOS and Android.
DESC
s.homepage = 'https://github.com/BoltsFramework'
s.authors = { 'Nikita Lutsenko' => 'nlutsenko@me.com' }
s.license = 'BSD'
s.source = { :git => 'https://github.com/BoltsFramework/Bolts-ObjC.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ParseIt'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.subspec 'Tasks' do |ss|
ss.source_files = 'Bolts/Common/*.[hm]'
ss.public_header_files = 'Bolts/Common/*.h'
end
s.subspec 'AppLinks' do |ss|
ss.ios.deployment_target = '8.0'
ss.dependency 'Bolts/Tasks'
ss.ios.source_files = 'Bolts/iOS/**/*.[hm]'
ss.ios.public_header_files = 'Bolts/iOS/*.h'
end
end