From fd2f562d2ea92585cac39b5b0f02fae5e3ba752f Mon Sep 17 00:00:00 2001 From: Evgeny Date: Wed, 26 Apr 2017 22:40:25 +0300 Subject: [PATCH] Add podspec file for cocoapods --- RRuleSwift.podspec | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 RRuleSwift.podspec diff --git a/RRuleSwift.podspec b/RRuleSwift.podspec new file mode 100644 index 0000000..09c51ad --- /dev/null +++ b/RRuleSwift.podspec @@ -0,0 +1,11 @@ +Pod::Spec.new do |s| + s.name = 'RRuleSwift' + s.version = '0.1.1' + s.summary = 'Swift rrule library for working with recurrence rules of calendar dates.' + s.homepage = 'https://github.com/teambition/RRuleSwift' + s.license = { :type => 'MIT', :file => 'LICENSE.md' } + s.author = { 'Teambition' => 'dev@teambition.com' } + s.source = { :git => 'https://github.com/teambition/RRuleSwift.git', :tag => s.version.to_s } + s.ios.deployment_target = '8.0' + s.source_files = 'Sources/**/*' +end