From 6c162b46f05a0f14815a30ee6bd41828725995e2 Mon Sep 17 00:00:00 2001 From: Jonathan Dalrymple Date: Sat, 1 Dec 2012 14:15:58 -0800 Subject: [PATCH] Added Podspec for FRCoreDataOperation --- .../0.3.0/FRCoreDataOperation.podspec | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 FRCoreDataOperation/0.3.0/FRCoreDataOperation.podspec diff --git a/FRCoreDataOperation/0.3.0/FRCoreDataOperation.podspec b/FRCoreDataOperation/0.3.0/FRCoreDataOperation.podspec new file mode 100644 index 00000000000000..0f49eb8aeaf40d --- /dev/null +++ b/FRCoreDataOperation/0.3.0/FRCoreDataOperation.podspec @@ -0,0 +1,29 @@ +# +# Be sure to run `pod spec lint FRCoreDataOperation.podspec' to ensure this is a +# valid spec. +# +# Remove all comments before submitting the spec. Optional attributes are commented. +# +# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format +# +Pod::Spec.new do |s| + s.name = "FRCoreDataOperation" + s.version = "0.3.0" + s.summary = "A set of NSOperation subclasses for working with Core Data ManagedObjectContexts." + s.homepage = "https://github.com/veritech/FRCoreDataOperation" + + s.license = { :type => 'MIT', :file => 'LICENSE' } + + s.author = { "Jonathan Dalrymple" => "jonathan@float-right.co.uk" } + s.source = { :git => "https://github.com/veritech/FRCoreDataOperation.git", :tag => "0.3.0" } + + # ――― MULTI-PLATFORM VALUES ――――――――――――――――――――――――――――――――――――――――――――――――― # + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + + s.source_files = 'Classes', '*.{h,m}' + + s.frameworks = 'CoreData' + + s.requires_arc = true +end