-
-
Save tonyarnold/6795159 to your computer and use it in GitHub Desktop.
This file contains 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 = "ReactiveCocoaIO" | |
s.version = "0.0.1" | |
s.summary = "Reactive file management framework built on top of ReactiveCocoa." | |
s.homepage = "https://github.com/ReactiveCocoa/ReactiveCocoaIO" | |
s.author = { "ReactiveCocoa" => "ReactiveCocoa" } | |
s.source = { :git => "https://github.com/zakdances/ReactiveCocoaIO.git", :commit => "7088c256fa55afe98dd60c880fa755fb4dc8265b" } | |
s.license = 'Simplified BSD License' | |
s.description = "ReactiveCocoaIO is a framework for accessing and manipulating a file system through signals, based on ReactiveCocoa." | |
s.requires_arc = true | |
s.ios.deployment_target = '6.1' | |
s.osx.deployment_target = '10.7' | |
s.source_files = 'ReactiveCocoaIO/*.{h,m}', 'ReactiveCocoaIO/**/*.{h,m}' | |
s.dependency 'ReactiveCocoa', '~> 2.0' | |
s.frameworks = 'Foundation' | |
s.prefix_header_contents = <<-EOS | |
#ifdef __OBJC__ | |
#import <libkern/OSAtomic.h> | |
#import <ReactiveCocoaIO/ReactiveCocoaIO.h> | |
#import <ReactiveCocoa/ReactiveCocoa.h> | |
#import <ReactiveCocoa/EXTScope.h> | |
#endif /* __OBJC__ */ | |
EOS | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment