From b3f294ec473354432fd4bfca1726b7719bc693ea Mon Sep 17 00:00:00 2001 From: Mat Trudel Date: Fri, 1 Mar 2013 12:25:36 -0500 Subject: [PATCH] [Add] MTCollectionOperators (0.1.0) --- .../0.1.0/MTCollectionOperators.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MTCollectionOperators/0.1.0/MTCollectionOperators.podspec diff --git a/MTCollectionOperators/0.1.0/MTCollectionOperators.podspec b/MTCollectionOperators/0.1.0/MTCollectionOperators.podspec new file mode 100644 index 00000000..4ca0e773 --- /dev/null +++ b/MTCollectionOperators/0.1.0/MTCollectionOperators.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "MTCollectionOperators" + s.version = "0.1.0" + s.summary = "Adds map, intersect, subtract, etc operators to collection classes." + s.description = <<-DESC + A set of handy add-ons to Cocoa's basic collection classes. + Supports NSSet and NSArray, as well as their + mutable subclasses. Provides map, intersect and subtract + operations. + DESC + s.homepage = "https://github.com/mtrudel/MTCollectionOperators" + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { "Mat Trudel" => "mat@geeky.net" } + s.source = { :git => "https://github.com/mtrudel/MTCollectionOperators.git", :tag => "0.1.0" } + s.ios.deployment_target = '5.0' + s.osx.deployment_target = '10.7' + s.source_files = 'Classes', 'Classes/**/*.{h,m}' + s.requires_arc = true +end