From 604ba4823c54bcb11a27b3a4b37baecfa03de4bf Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Sat, 15 Dec 2012 12:38:47 -0500 Subject: [PATCH] Added IOSQueryable --- IOSQueryable/0.0.1/IOSQueryable.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 IOSQueryable/0.0.1/IOSQueryable.podspec diff --git a/IOSQueryable/0.0.1/IOSQueryable.podspec b/IOSQueryable/0.0.1/IOSQueryable.podspec new file mode 100644 index 00000000..8291534c --- /dev/null +++ b/IOSQueryable/0.0.1/IOSQueryable.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = "IOSQueryable" + s.version = "0.0.1" + s.summary = "ios-queryable is an implementation of IQueryable/IEnumerable for Core Data,." + s.homepage = "https://github.com/martydill/ios-queryable" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = "Marty Dill" + s.source = { :git => "https://github.com/martydill/ios-queryable.git", :commit => "76af6cb75339b6b399b95d2bada77ebbf4905100" } + s.platform = :ios + s.source_files = 'ios-queryable/NSManagedObjectContext+Queryable.{h,m}' + s.frameworks = 'CoreData', 'Foundation' + s.requires_arc = true +end