Created
June 29, 2016 17:08
-
-
Save ashfurrow/b79754f3cfe6dff64a8cd20d3ce45ed4 to your computer and use it in GitHub Desktop.
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 = '4.2.1' | |
s.summary = 'A framework for composing and transforming streams of values.' | |
s.description = <<-EOS | |
ReactiveCocoa (RAC) is an Objective-C framework for Functional Reactive Programming. | |
It provides APIs for composing and transforming streams of values. | |
EOS | |
s.homepage = 'https://github.com/ReactiveCocoa/ReactiveCocoa' | |
s.license = { :type => 'MIT', :file => 'LICENSE.md' } | |
s.author = {"Josh Abernathy" => "[email protected]"} | |
s.ios.deployment_target = '8.0' | |
s.source = { | |
:git => 'https://github.com/ReactiveCocoa/ReactiveCocoa.git', | |
:tag => "v#{s.version}" | |
} | |
s.dependency 'Result', '~> 2.0' | |
s.framework = 'Foundation' | |
# Delete this file so we don't have to worry about it. CocoaPods will build an equivalent file based on the spec's source files. | |
s.prepare_command = "touch ReactiveCocoa/ReactiveCocoa.h ; rm ReactiveCocoa/ReactiveCocoa.h" | |
s.source_files = 'ReactiveCocoa/**/*.{d,h,m,swift}' | |
s.exclude_files = [ | |
'ReactiveCocoa/**/*{AppKit,NSControl,NSText,NSTable}*' | |
] | |
s.framework = 'UIKit' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment