From 382472df4b5206856352fabd77d826febf6c8a99 Mon Sep 17 00:00:00 2001 From: Justin Kolb Date: Sat, 16 Sep 2017 16:00:29 -0500 Subject: [PATCH] Add Cocoapods support --- .swift-version | 1 + FranticApparatus.podspec | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .swift-version create mode 100644 FranticApparatus.podspec diff --git a/.swift-version b/.swift-version new file mode 100644 index 0000000..5186d07 --- /dev/null +++ b/.swift-version @@ -0,0 +1 @@ +4.0 diff --git a/FranticApparatus.podspec b/FranticApparatus.podspec new file mode 100644 index 0000000..d13bb60 --- /dev/null +++ b/FranticApparatus.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'FranticApparatus' + s.version = '7.0.0' + s.summary = 'Promises/A+ for Swift' + s.description = <<-DESC +Type safe, memory safe promises for Swift. Cancellation supported. + DESC + s.homepage = 'https://github.com/jkolb/FranticApparatus' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'jkolb' => 'franticapparatus@gmail.com' } + s.source = { :git => 'https://github.com/jkolb/FranticApparatus.git', :tag => s.version.to_s } + s.social_media_url = 'https://twitter.com/nabobnick' + s.ios.deployment_target = '8.0' + s.osx.deployment_target = '10.10' + s.source_files = 'Sources/FranticApparatus/*.swift' +end