From 3a222201b8cb8bd053e1e990abd92f5009e227fd Mon Sep 17 00:00:00 2001 From: Alex Izvekov Date: Sun, 21 Oct 2012 20:57:44 +0800 Subject: [PATCH 1/5] Add MGBox2 (1.3.0) --- MGBox2/1.3.0/MGBox2.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 MGBox2/1.3.0/MGBox2.podspec diff --git a/MGBox2/1.3.0/MGBox2.podspec b/MGBox2/1.3.0/MGBox2.podspec new file mode 100644 index 00000000..9b62d7ae --- /dev/null +++ b/MGBox2/1.3.0/MGBox2.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "MGBox2" + s.version = "1.0.0" + s.summary = "Simple, quick iOS tables, grids, and more." + s.homepage = "https://github.com/sobri909/MGBox2" + + s.license = 'Copyright 2012, Matt Greenfield' + + s.author = { "Matt Greenfield" => "matt@bigpaua.com" } + s.source = { :git => "https://github.com/sobri909/MGBox2.git", :tag => "1.3.0" } + + s.platform = :ios, '5.0' + + s.source_files = 'MGBox/**/*.{h,m}' + + s.framework = 'QuartzCore' + s.requires_arc = true + +end From 10c52de19e0f80f78e2f8497afa2ebaba8d6883c Mon Sep 17 00:00:00 2001 From: Alex Izvekov Date: Sun, 21 Oct 2012 21:03:32 +0800 Subject: [PATCH 2/5] fix MGBox2 (1.3.0) --- MGBox2/1.3.0/MGBox2.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MGBox2/1.3.0/MGBox2.podspec b/MGBox2/1.3.0/MGBox2.podspec index 9b62d7ae..eb1d472b 100644 --- a/MGBox2/1.3.0/MGBox2.podspec +++ b/MGBox2/1.3.0/MGBox2.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "MGBox2" - s.version = "1.0.0" + s.version = "1.3.0" s.summary = "Simple, quick iOS tables, grids, and more." s.homepage = "https://github.com/sobri909/MGBox2" From 93ea696cbd12d90129718c05f0c1688be861023c Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Sun, 21 Oct 2012 10:41:43 -0400 Subject: [PATCH 3/5] Add NSUnit. An Objective-C friendly unit testing library. --- NSUnit/0.0.1/NSUnit.podspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 NSUnit/0.0.1/NSUnit.podspec diff --git a/NSUnit/0.0.1/NSUnit.podspec b/NSUnit/0.0.1/NSUnit.podspec new file mode 100644 index 00000000..de1d3530 --- /dev/null +++ b/NSUnit/0.0.1/NSUnit.podspec @@ -0,0 +1,26 @@ +# +# Be sure to run `pod spec lint NSUnit.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 = "NSUnit" + s.version = "0.0.1" + s.summary = "NSUnit is a unit testing framework for Objective-C projects. NSUnit builds on top of SenTestingKit and provides a more Objective-C friendly API, particularly for testing against Foundation classes." + + s.license = 'MIT' + s.homepage = "https://github.com/jacksonh/NSUnit" + s.author = { "Jackson Harper" => "jacksonh@gmail.com" } + + s.source = { :git => "https://github.com/jacksonh/NSUnit.git", :commit => "3d52c1934cb263386aea359d55a771807caf43b1" } + s.platform = :ios + + s.source_files = 'NSUnit/**/*.{h,m}' + s.public_header_files = 'NSUnit/**/*.h' + + s.requires_arc = true + +end From bb090b4b3904f715b20a5c93eea863a3f3c5f9ea Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Sun, 21 Oct 2012 11:45:33 -0300 Subject: [PATCH 4/5] Remove boilerplate comments --- NSUnit/0.0.1/NSUnit.podspec | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/NSUnit/0.0.1/NSUnit.podspec b/NSUnit/0.0.1/NSUnit.podspec index de1d3530..ee6027df 100644 --- a/NSUnit/0.0.1/NSUnit.podspec +++ b/NSUnit/0.0.1/NSUnit.podspec @@ -1,11 +1,4 @@ -# -# Be sure to run `pod spec lint NSUnit.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 = "NSUnit" s.version = "0.0.1" From e93d9a56a4a9cae813edda72ff06b25ca90945c0 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Sun, 21 Oct 2012 11:48:38 -0300 Subject: [PATCH 5/5] Shorter description --- NSUnit/0.0.1/NSUnit.podspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/NSUnit/0.0.1/NSUnit.podspec b/NSUnit/0.0.1/NSUnit.podspec index ee6027df..dcf970bb 100644 --- a/NSUnit/0.0.1/NSUnit.podspec +++ b/NSUnit/0.0.1/NSUnit.podspec @@ -1,8 +1,7 @@ - Pod::Spec.new do |s| s.name = "NSUnit" s.version = "0.0.1" - s.summary = "NSUnit is a unit testing framework for Objective-C projects. NSUnit builds on top of SenTestingKit and provides a more Objective-C friendly API, particularly for testing against Foundation classes." + s.summary = "NSUnit is a unit testing framework, providing a more Objective-C friendly API, particularly for testing against Foundation classes." s.license = 'MIT' s.homepage = "https://github.com/jacksonh/NSUnit"