From d2eaff5eda7991c0a99c815d8f2316667563d8ff Mon Sep 17 00:00:00 2001 From: Jon Chambers Date: Thu, 26 Jun 2014 17:02:40 -0400 Subject: [PATCH 1/2] Added a podspec that builds the KISSmetrics SDK from source instead of including a pre-built framework. --- KISSmetrics-iOS-SDK.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 KISSmetrics-iOS-SDK.podspec diff --git a/KISSmetrics-iOS-SDK.podspec b/KISSmetrics-iOS-SDK.podspec new file mode 100644 index 0000000..c74d611 --- /dev/null +++ b/KISSmetrics-iOS-SDK.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = 'KISSmetrics-iOS-SDK' + s.version = '2.0.1' + s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } + s.summary = 'iOS SDK for KISSmetrics.' + s.homepage = 'http://www.kissmetrics.com' + s.authors = { 'kissmetrics' => 'support@kissmetrics.com' } + s.source = { :git => 'https://github.com/kissmetrics/KISSmetrics-iOS-SDK.git', :tag => "v#{s.version}", :submodules => true } + + s.platform = :ios, '5.1' + + s.public_header_files = 'KISSmetricsAPI/KISSmetricsAPI.h' + s.source_files = 'KISSmetricsAPI/*.{c,h,m}' + + s.requires_arc = true +end From 0e517bc10875a8b0936dae8615f397054f02fd06 Mon Sep 17 00:00:00 2001 From: Jon Chambers Date: Thu, 26 Jun 2014 17:04:05 -0400 Subject: [PATCH 2/2] Trivial whitespace fixes. --- KISSmetrics-iOS-SDK.podspec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/KISSmetrics-iOS-SDK.podspec b/KISSmetrics-iOS-SDK.podspec index c74d611..440c58a 100644 --- a/KISSmetrics-iOS-SDK.podspec +++ b/KISSmetrics-iOS-SDK.podspec @@ -1,16 +1,16 @@ Pod::Spec.new do |s| s.name = 'KISSmetrics-iOS-SDK' - s.version = '2.0.1' - s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } - s.summary = 'iOS SDK for KISSmetrics.' - s.homepage = 'http://www.kissmetrics.com' - s.authors = { 'kissmetrics' => 'support@kissmetrics.com' } + s.version = '2.0.1' + s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } + s.summary = 'iOS SDK for KISSmetrics.' + s.homepage = 'http://www.kissmetrics.com' + s.authors = { 'kissmetrics' => 'support@kissmetrics.com' } s.source = { :git => 'https://github.com/kissmetrics/KISSmetrics-iOS-SDK.git', :tag => "v#{s.version}", :submodules => true } s.platform = :ios, '5.1' - + s.public_header_files = 'KISSmetricsAPI/KISSmetricsAPI.h' s.source_files = 'KISSmetricsAPI/*.{c,h,m}' - + s.requires_arc = true end