Last active
August 29, 2015 14:13
-
-
Save brynbellomy/7c172a065c083b015a1f to your computer and use it in GitHub Desktop.
ReactiveCocoa.podspec
This file contains hidden or 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' | |
| 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