From f136b9284c0fcf1170b4570136fb557c44cb9ab1 Mon Sep 17 00:00:00 2001 From: Jordan Kay Date: Tue, 3 Dec 2013 20:04:25 -0800 Subject: [PATCH] Add CocoaPods support --- KGNoise.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 KGNoise.podspec diff --git a/KGNoise.podspec b/KGNoise.podspec new file mode 100644 index 0000000..aec731f --- /dev/null +++ b/KGNoise.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'KGNoise' + s.version = '1.2.0' + s.summary = 'Cocoa noise drawing code + a ready to go noise view!' + s.homepage = 'https://github.com/kgn/KGNoise' + s.license = 'MIT' + s.requires_arc = true + s.author = { + 'David Keegan' => 'git@davidkeegan.com' + } + s.source = { + :git => 'https://github.com/kgn/KGNoise.git', + :tag => '1.2.0' + } + s.source_files = '*.{h,m}' +end