From 8c4b31fd5618aabf8b9d1be9243e95f51353d9e0 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Sun, 26 Oct 2014 18:27:23 +0000 Subject: [PATCH] [podspec] Include a Podspec --- Stencil.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Stencil.podspec diff --git a/Stencil.podspec b/Stencil.podspec new file mode 100644 index 0000000..3d0ecb9 --- /dev/null +++ b/Stencil.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |spec| + spec.name = 'Stencil' + spec.version = '0.1.0' + spec.summary = 'Stencil is a simple and powerful template language for Swift.' + spec.homepage = 'https://github.com/kylef/Stencil' + spec.license = { :type => 'BSD', :file => 'LICENSE' } + spec.author = { 'Kyle Fuller' => 'inbox@kylefuller.co.uk' } + spec.social_media_url = 'http://twitter.com/kylefuller' + spec.source = { :git => 'https://github.com/kylef/Stencil.git', :tag => "#{spec.version}" } + spec.source_files = 'Stencil/*.{h,swift}' + spec.requires_arc = true +end +