From b97e81ad549ee172256577dc7eb9181cd6963c9c Mon Sep 17 00:00:00 2001 From: Felix Jendrusch Date: Wed, 16 Sep 2015 17:43:16 +0200 Subject: [PATCH] Add .podspec --- Dobby.podspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Dobby.podspec diff --git a/Dobby.podspec b/Dobby.podspec new file mode 100644 index 0000000..3c82b8e --- /dev/null +++ b/Dobby.podspec @@ -0,0 +1,26 @@ +Pod::Spec.new do |spec| + spec.name = 'Dobby' + spec.version = '0.4-alpha.1' + spec.authors = { + 'Felix Jendrusch' => 'felix@felixjendrusch.is' + } + spec.social_media_url = 'https://twitter.com/felixjendrusch' + spec.license = { + :type => 'Apache License, Version 2.0', + :file => 'LICENSE' + } + spec.homepage = 'https://github.com/rheinfabrik/Dobby' + spec.source = { + :git => 'https://github.com/rheinfabrik/Dobby.git', + :tag => spec.version.to_s + } + spec.summary = 'Swift helpers for mocking and stubbing' + spec.description = 'Dobby provides a few helpers for mocking and stubbing.' + + spec.ios.deployment_target = '8.0' + spec.osx.deployment_target = '10.10' + + spec.framework = 'Foundation', 'XCTest' + + spec.source_files = 'Dobby/**/*.{h,swift}' +end