Last active
August 29, 2015 14:17
-
-
Save m4c1ek/2e77800771329901c032 to your computer and use it in GitHub Desktop.
ReactiveCocoa Swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'ReactiveCocoa-Swift' | |
s.version = '0.0.1' | |
s.summary = 'A framework for composing and transforming streams of values' | |
s.authors = { 'Justin Spahr-Summers' => '@jspahrsummers' } | |
s.license = { :type => 'MIT', :file => 'LICENSE' } | |
s.homepage = 'https://github.com/ReactiveCocoa/ReactiveCocoa' | |
s.ios.deployment_target = '8.0' | |
s.osx.deployment_target = '10.10' | |
s.source_files = 'ReactiveCocoa/Swift/*.swift', 'ReactiveCocoa/Objective-C/*.{m,h,d}', 'ReactiveCocoa/extobjc/*.{h,m}' | |
s.requires_arc = true | |
s.exclude_files = 'ReactiveCocoa/Objective-C/*{RACObjCRuntime,AppKit,NSControl,NSText,UIActionSheet,UI}*' | |
s.dependency 'LlamaKit' | |
s.source = { :git => 'https://github.com/ReactiveCocoa/ReactiveCocoa.git', :branch => 'swift-development' } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment