Skip to content

Instantly share code, notes, and snippets.

@ashfurrow
Created June 29, 2016 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashfurrow/b79754f3cfe6dff64a8cd20d3ce45ed4 to your computer and use it in GitHub Desktop.
Save ashfurrow/b79754f3cfe6dff64a8cd20d3ce45ed4 to your computer and use it in GitHub Desktop.
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" => "josh@github.com"}
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