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. diff --git a/taskit.podspec b/taskit.podspec new file mode 100644 index 0000000..82fe5e4 --- /dev/null +++ b/taskit.podspec @@ -0,0 +1,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.author = { "Alex Gordon" => "alextgordon@gmail.com" } + s.homepage = 'https://github.com/fileability/taskit' + s.source = { :git => "https://github.com/darvin/taskit.git", + :commit => "e98b48415bf69737d6643cd2f01db05568178140" } + s.source_files = '*.{h,m}' + s.platform = :osx +end