From 6d0af36ce27d3a137a0602668018f70b491f0542 Mon Sep 17 00:00:00 2001 From: Sergey Klimov Date: Mon, 14 Jan 2013 22:17:37 -0800 Subject: [PATCH 1/6] Create taskit.podspec --- taskit.podspec | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 taskit.podspec diff --git a/taskit.podspec b/taskit.podspec new file mode 100644 index 0000000..b960017 --- /dev/null +++ b/taskit.podspec @@ -0,0 +1,10 @@ +Pod::Spec.new do |s| + s.name = "taskit" + s.version = "0.0.1" + s.license = 'WTFPL' + s.summary = "NSTask reimplementation a simpler interface" + s.author = { "Alex Gordon" => "alextgordon@gmail.com" } + s.homepage = 'https://github.com/fileability/taskit' + s.source = { :git => "git://github.com/fileability/taskit.git", :commit => "96eaa8ef0f66dc98b02d9686d6f3e38bb5981b99" } + s.source_files = '*.{h,m}' +end From 8ea69786ec70ab5bff8a12a7714c2b9c3cdb8923 Mon Sep 17 00:00:00 2001 From: Sergey Klimov Date: Mon, 14 Jan 2013 22:30:20 -0800 Subject: [PATCH 2/6] Update Taskit.h --- Taskit.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Taskit.h b/Taskit.h index 76358f5..60a7622 100644 --- a/Taskit.h +++ b/Taskit.h @@ -3,6 +3,7 @@ // Licensed under the WTFPL: http://sam.zoy.org/wtfpl/ #import +#import typedef enum { From b4b2d94e530755a1a95be868d6ca11fa6ab28206 Mon Sep 17 00:00:00 2001 From: Sergey Klimov Date: Mon, 14 Jan 2013 22:36:03 -0800 Subject: [PATCH 3/6] Update Taskit.h --- Taskit.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Taskit.h b/Taskit.h index 60a7622..76358f5 100644 --- a/Taskit.h +++ b/Taskit.h @@ -3,7 +3,6 @@ // Licensed under the WTFPL: http://sam.zoy.org/wtfpl/ #import -#import typedef enum { From e98b48415bf69737d6643cd2f01db05568178140 Mon Sep 17 00:00:00 2001 From: Sergey Klimov Date: Mon, 14 Jan 2013 22:38:16 -0800 Subject: [PATCH 4/6] Create LICENSE --- LICENSE | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a872316 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2012 Alex Gordon + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. From 09962b80b89e4671733d885693e0e76820d299e5 Mon Sep 17 00:00:00 2001 From: Sergey Klimov Date: Mon, 14 Jan 2013 22:40:09 -0800 Subject: [PATCH 5/6] Update taskit.podspec --- taskit.podspec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/taskit.podspec b/taskit.podspec index b960017..7f74143 100644 --- a/taskit.podspec +++ b/taskit.podspec @@ -2,9 +2,12 @@ Pod::Spec.new do |s| s.name = "taskit" s.version = "0.0.1" s.license = 'WTFPL' - s.summary = "NSTask reimplementation a simpler interface" + s.summary = "NSTask reimplementation a simpler interface." s.author = { "Alex Gordon" => "alextgordon@gmail.com" } s.homepage = 'https://github.com/fileability/taskit' - s.source = { :git => "git://github.com/fileability/taskit.git", :commit => "96eaa8ef0f66dc98b02d9686d6f3e38bb5981b99" } + s.source = { :git => "https://github.com/darvin/taskit.git", + :commit => "e98b48415bf69737d6643cd2f01db05568178140" } s.source_files = '*.{h,m}' + s.framework = 'Cocoa' + s.platform = :osx end From ed27e181563dcec9025c18e1d28e5cc01e7ab0d6 Mon Sep 17 00:00:00 2001 From: Sergey Klimov Date: Mon, 14 Jan 2013 22:40:39 -0800 Subject: [PATCH 6/6] Update taskit.podspec --- taskit.podspec | 1 - 1 file changed, 1 deletion(-) diff --git a/taskit.podspec b/taskit.podspec index 7f74143..82fe5e4 100644 --- a/taskit.podspec +++ b/taskit.podspec @@ -8,6 +8,5 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/darvin/taskit.git", :commit => "e98b48415bf69737d6643cd2f01db05568178140" } s.source_files = '*.{h,m}' - s.framework = 'Cocoa' s.platform = :osx end