forked from PaulTaykalo/state-view-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStateViewManager.podspec
More file actions
32 lines (21 loc) · 821 Bytes
/
Copy pathStateViewManager.podspec
File metadata and controls
32 lines (21 loc) · 821 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
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "StateViewManager"
s.version = "0.0.1"
s.summary = "Yet another bicycle for handling state view switching"
s.homepage = "https://github.com/PaulTaykalo/state-view-manager"
s.license = 'MIT'
s.author = { "Paul Taykalo" => "tt.kilew@gmail.com" }
s.source = { :git => "https://github.com/PaulTaykalo/state-view-manager.git"}
s.platform = :ios, '5.0'
s.requires_arc = true
#...
s.subspec 'Manager' do |sp|
sp.source_files = 'Examples/Examples/Classes/Library/*.{h,m}'
end
s.subspec 'Protocols' do |sp|
sp.source_files = 'Examples/Examples/Classes/Library/Protocols/*.h'
end
s.subspec 'Implementations' do |sp|
sp.source_files = 'Examples/Examples/Classes/Library/Implementations/*.{h,m}'
end
end