From a608198e110e4c2ef21b4119758c7c4ba372fbd9 Mon Sep 17 00:00:00 2001 From: Nuno Sousa Date: Sat, 2 May 2015 23:52:18 +0100 Subject: [PATCH] Add podspec --- DATOutletSegue.podspec | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 DATOutletSegue.podspec diff --git a/DATOutletSegue.podspec b/DATOutletSegue.podspec new file mode 100644 index 0000000..865c7b9 --- /dev/null +++ b/DATOutletSegue.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = 'DATOutletSegue' + s.version = '1.0.0' + s.license = 'MIT' + s.summary = 'A segue to connect view controllers to their parents in the storyboard' + s.homepage = 'https://github.com/datinc/DATOutletSegue' + s.authors = { 'Peter Gulyas' => 'peter@datinc.ca' } + s.source = { :git => 'https://github.com/datinc/DATOutletSegue.git', :tag => s.version } + s.ios.deployment_target = '8.0' + s.source_files = 'DATOutletSegue/*.{m,h}' + s.requires_arc = true +end