From a012020264c1400fc82b92898756bb18265c15f9 Mon Sep 17 00:00:00 2001 From: A2K Date: Thu, 14 May 2015 17:39:17 -0700 Subject: [PATCH 1/3] set deployment target to 7.0 --- JSONWebToken.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSONWebToken.podspec b/JSONWebToken.podspec index df08b5c..9fc13de 100644 --- a/JSONWebToken.podspec +++ b/JSONWebToken.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |spec| spec.social_media_url = 'http://twitter.com/kylefuller' spec.source = { :git => 'https://github.com/kylef/JSONWebToken.swift.git', :tag => "#{spec.version}" } spec.source_files = 'JWT/*.swift' - spec.ios.deployment_target = '8.0' + spec.ios.deployment_target = '7.0' spec.osx.deployment_target = '10.9' spec.requires_arc = true spec.dependency 'CryptoSwift', '0.0.10' From b7012ca2779203df1bc1a691603a1d3f3a1febad Mon Sep 17 00:00:00 2001 From: Roman Bovsunovskiy Date: Thu, 14 May 2015 17:58:37 -0700 Subject: [PATCH 2/3] trying to force this crap to use my fork --- JSONWebToken.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSONWebToken.podspec b/JSONWebToken.podspec index 9fc13de..ff92705 100644 --- a/JSONWebToken.podspec +++ b/JSONWebToken.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |spec| spec.ios.deployment_target = '7.0' spec.osx.deployment_target = '10.9' spec.requires_arc = true - spec.dependency 'CryptoSwift', '0.0.10' + spec.dependency 'CryptoSwift', '0.0.10', :git => 'https://github.com/A2K/CryptoSwift' spec.module_name = 'JWT' end From cb6271b4ff8d2eb1f3e3692bdbee84e39f6fe2d0 Mon Sep 17 00:00:00 2001 From: Roman Bovsunovskiy Date: Thu, 14 May 2015 18:02:22 -0700 Subject: [PATCH 3/3] turns out podspec does not support such syntax --- JSONWebToken.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSONWebToken.podspec b/JSONWebToken.podspec index ff92705..9fc13de 100644 --- a/JSONWebToken.podspec +++ b/JSONWebToken.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |spec| spec.ios.deployment_target = '7.0' spec.osx.deployment_target = '10.9' spec.requires_arc = true - spec.dependency 'CryptoSwift', '0.0.10', :git => 'https://github.com/A2K/CryptoSwift' + spec.dependency 'CryptoSwift', '0.0.10' spec.module_name = 'JWT' end