Skip to content

Instantly share code, notes, and snippets.

@m4c1ek
Last active August 29, 2015 14:17
Show Gist options
  • Save m4c1ek/2e77800771329901c032 to your computer and use it in GitHub Desktop.
Save m4c1ek/2e77800771329901c032 to your computer and use it in GitHub Desktop.
ReactiveCocoa Swift
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