Skip to content

Instantly share code, notes, and snippets.

@brynbellomy
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save brynbellomy/7c172a065c083b015a1f to your computer and use it in GitHub Desktop.

Select an option

Save brynbellomy/7c172a065c083b015a1f to your computer and use it in GitHub Desktop.
ReactiveCocoa.podspec
Pod::Spec.new do |s|
s.name = 'ReactiveCocoa'
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.osx.exclude_files = 'ReactiveCocoa/Objective-C/UI*'
s.ios.exclude_files = 'ReactiveCocoa/*{AppKit,NSControl,NSText}*'
s.dependency 'LlamaKit', '0.6.0'
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