Last active
December 23, 2015 20:39
-
-
Save MarcoSero/6690670 to your computer and use it in GitHub Desktop.
Nimble Podspec
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 = "Nimble" | |
s.version = "0.0.1" | |
s.summary = "Core Data and iCloud made nimble and fast." | |
s.homepage = "http://github.com/MarcoSero/Nimble" | |
s.license = 'MIT' | |
s.author = { "Marco Sero" => "[email protected]" } | |
s.source = { :git => "https://github.com/MarcoSero/Nimble.git", :tag => "0.0.1" } | |
s.platform = :ios, '5.0' | |
s.source_files = 'Nimble/*.{h,m}', 'Nimble/**/*.{h,m}' | |
s.framework = 'CoreData' | |
s.requires_arc = true | |
s.prefix_header_contents = <<-EOS | |
#ifdef __OBJC__ | |
#import <CoreData/CoreData.h> | |
#endif | |
EOS | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment