diff --git a/RunLoop.podspec b/RunLoop.podspec new file mode 100644 index 0000000..72c1cd1 --- /dev/null +++ b/RunLoop.podspec @@ -0,0 +1,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 \ No newline at end of file