Skip to content

Instantly share code, notes, and snippets.

@MarcoSero
Last active December 23, 2015 20:39
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 MarcoSero/6690670 to your computer and use it in GitHub Desktop.
Save MarcoSero/6690670 to your computer and use it in GitHub Desktop.
Nimble Podspec
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" => "marco@marcosero.com" }
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