-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSingleTrack.podspec
More file actions
28 lines (23 loc) · 915 Bytes
/
SingleTrack.podspec
File metadata and controls
28 lines (23 loc) · 915 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
Pod::Spec.new do |s|
s.name = 'SingleTrack'
s.version = '0.1'
s.license = 'MIT'
s.summary = 'Helpers for testing asynchronous behavior with GCD queues'
s.homepage = 'https://github.com/orchardadam/SingleTrack'
s.social_media_url = 'https://www.orchardpie.com'
s.authors = { 'Adam Milligan' => 'adam@orchardpie.com' }
s.source = { git: 'https://github.com/orchardadam/SingleTrack', tag: "v0.1" }
s.requires_arc = true
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.default_subspec = 'Lib'
s.subspec "Lib" do |sub|
sub.public_header_files = 'SingleTrack/SingleTrack.h'
sub.source_files = 'SingleTrack/SingleTrack.h', 'SingleTrack/*.{h,mm}'
end
s.subspec "SpecHelpers" do |sub|
sub.dependency 'SingleTrack/Lib'
sub.public_header_files = 'SingleTrack/SpecHelpers/*.h'
sub.source_files = 'SingleTrack/SpecHelpers/*.{h,m,mm}'
end
end