-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFloater💩.podspec
31 lines (27 loc) · 1.1 KB
/
Floater💩.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
Pod::Spec.new do |s|
s.name = 'Floater💩'
s.version = '0.1.0'
s.summary = 'Leave a trail of fingerprints on your screen for app demos.'
s.homepage = 'https://github.com/Buglife/Floater_'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Dave Schukin' => 'dave@buglife.com' }
s.source = { :git => 'https://github.com/Buglife/Floater_.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/BuglifeApp'
s.ios.deployment_target = '8.0'
s.source_files = 'Floater💩/Classes/Shared/**/*'
s.subspec 'Shared' do |sp|
sp.source_files = 'Floater💩/Classes/Shared/**/*'
sp.dependency 'HSTestingBackchannel', '1.2.1'
end
s.subspec 'AppStuff' do |sp|
sp.source_files = 'Floater💩/Classes/AppStuff/**/*'
sp.dependency 'Floater💩/Shared'
s.frameworks = 'CoreImage'
end
s.subspec 'UITestStuff' do |sp|
sp.source_files = 'Floater💩/Classes/UITestStuff/**/*'
sp.dependency 'Floater💩/Shared'
sp.frameworks = 'XCTest'
s.ios.deployment_target = '9.0'
end
end