Skip to content

Instantly share code, notes, and snippets.

@tonyarnold
Created January 13, 2014 05:47
Show Gist options
  • Save tonyarnold/8395295 to your computer and use it in GitHub Desktop.
Save tonyarnold/8395295 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'MagicalRecord'
s.version = '3.0dev'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Super Awesome Easy Fetching for Core Data 1!!!11!!!!1!.'
s.homepage = 'http://github.com/magicalpanda/MagicalRecord'
s.author = { 'Saul Mora' => '[email protected]' }
s.source = { :git => 'https://github.com/tonyarnold/MagicalRecord.git', :branch => 'release/3.0' }
s.description = 'Handy fetching, threading and data import helpers to make Core Data a little easier to use.'
s.framework = 'CoreData'
s.requires_arc = true
s.source_files = "Library/**/*.{h,m}"
s.osx.exclude_files = 'Library/Categories/UIKit/**'
s.ios.exclude_files = 'Library/Categories/UIKit/**'
s.prefix_header_contents = <<-EOS
#ifdef __OBJC__
#define MR_SHORTHAND
#import "CoreData+MagicalRecord.h"
#endif
EOS
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment