-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathABMultiton.podspec
More file actions
33 lines (27 loc) · 1.08 KB
/
ABMultiton.podspec
File metadata and controls
33 lines (27 loc) · 1.08 KB
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
Pod::Spec.new do |s|
s.name = "ABMultiton"
s.version = "2.1.1"
s.summary = "Multiton is a better alternative to singleton."
s.homepage = "https://github.com/belkevich/multiton"
s.social_media_url = 'https://twitter.com/okolodev'
s.license = { :type => 'MIT', :file => 'LICENSE.txt' }
s.author = { "Alexey Belkevich" => "belkevich.alexey@gmail.com" }
s.source = { :git => "https://github.com/belkevich/multiton.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = "5.0"
s.osx.deployment_target = "10.7"
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.subspec 'Core' do |ss|
ss.source_files = 'ABMultiton/P*/*.{h,m}'
end
s.subspec 'SetInstance' do |ss|
ss.dependency 'ABMultiton/Core'
ss.source_files = 'ABMultiton/Subspecs/*.{h,m}'
end
s.subspec 'All' do |ss|
ss.dependency 'ABMultiton/Core'
ss.dependency 'ABMultiton/SetInstance'
end
s.default_subspec = 'Core'
end