Last active
December 18, 2015 07:19
-
-
Save brynbellomy/5745795 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 = "ReactiveCocoaLayout-HEAD" | |
| s.version = "5.3.2" | |
| s.summary = "Reactive layout framework built on top of ReactiveCocoa." | |
| s.homepage = "https://github.com/ReactiveCocoa/ReactiveCocoaLayout" | |
| s.author = { "ReactiveCocoa" => "ReactiveCocoa" } | |
| s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoaLayout.git" } | |
| s.license = 'Simplified BSD License' | |
| s.description = "ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa." | |
| s.requires_arc = true | |
| s.ios.deployment_target = '6.0' | |
| s.osx.deployment_target = '10.7' | |
| s.source_files = 'ReactiveCocoaLayout/*.{h,m}' | |
| s.header_dir = '../ReactiveCocoaLayout' | |
| s.dependency 'Archimedes' | |
| s.dependency 'ReactiveCocoa' | |
| s.ios.frameworks = 'Foundation', 'QuartzCore', 'CoreGraphics', 'UIKit' | |
| s.ios.exclude_files = 'ReactiveCocoaLayout/NSCell*.{h,m}', 'ReactiveCocoaLayout/NSControl*.{h,m}', 'ReactiveCocoaLayout/NSView*.{h,m}' | |
| s.osx.exclude_files = 'ReactiveCocoaLayout/UIView*.{h,m}' | |
| s.osx.frameworks = 'Foundation', 'QuartzCore', 'CoreGraphics', 'Cocoa' | |
| s.prefix_header_contents = <<-EOS | |
| #ifdef __OBJC__ | |
| #import <ReactiveCocoa/ReactiveCocoa.h> | |
| #import <ReactiveCocoaLayout/ReactiveCocoaLayout.h> | |
| #import <Archimedes/Archimedes.h> | |
| #import <CoreGraphics/CoreGraphics.h> | |
| #import <QuartzCore/QuartzCore.h> | |
| #endif | |
| EOS | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment