-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRunLoop.podspec
More file actions
27 lines (20 loc) · 920 Bytes
/
RunLoop.podspec
File metadata and controls
27 lines (20 loc) · 920 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 = "RunLoop"
s.version = "0.1.1"
s.license = { :type => "Apache 2", :file => "LICENSE" }
s.summary = "Swift run loops with different underlying implementations"
s.homepage = "https://github.com/reactive-swift/RunLoop"
s.social_media_url = "https://github.com/reactive-swift/RunLoop"
s.authors = { "Daniel Leping" => "daniel@crossroadlabs.xyz" }
s.source = { :git => "https://github.com/reactive-swift/RunLoop.git", :tag => "#{s.version}" }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source_files = "RunLoop/*.swift",
s.exclude_files = "RunLoop/UVRunLoop.swift"
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-Dnouv' }
s.dependency 'Boilerplate', '~> 0.1.0'
s.dependency 'Foundation3', '~> 0.1.1'
s.requires_arc = true
end