From cdffbb45daebfdcabac1d443d021111d8cc0c79a Mon Sep 17 00:00:00 2001 From: Joe Hankin Date: Mon, 1 Apr 2013 10:47:18 -0700 Subject: [PATCH 1/2] Added podspec file for Cocoapods integration --- balanced-ios.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 balanced-ios.podspec diff --git a/balanced-ios.podspec b/balanced-ios.podspec new file mode 100644 index 0000000..7a3cd6c --- /dev/null +++ b/balanced-ios.podspec @@ -0,0 +1,18 @@ +Pod::Spec.new do |s| + s.name = "balanced-ios" + s.version = "0.2" + s.summary = "iOS library for working with Balanced Payments." + s.homepage = "https://github.com/balanced/balanced-ios" + s.license = { :type => 'MIT', :file => 'Balanced/LICENSE' } + s.author = { "Ben Mills" => "ben@unfiniti.com" } + s.source = { :git => "https://github.com/balanced/balanced-ios.git", :tag => "0.2" } + s.source_files = 'Balanced' + + s.platform = :ios, '5.0' + s.framework = 'CoreTelephony' + s.requires_arc = true + + s.prefix_header_contents = <<-EOS + #define BALANCED_IOS_VERSION @"0.2" + EOS +end From a4e37357718e4a06cc4f152c2ae279adad7b9f01 Mon Sep 17 00:00:00 2001 From: Vladimir Grichina Date: Fri, 24 Jan 2014 22:27:06 +0200 Subject: [PATCH 2/2] Updated podspec version to 0.4 --- balanced-ios.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/balanced-ios.podspec b/balanced-ios.podspec index 7a3cd6c..6f19700 100644 --- a/balanced-ios.podspec +++ b/balanced-ios.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "balanced-ios" - s.version = "0.2" + s.version = "0.4" s.summary = "iOS library for working with Balanced Payments." s.homepage = "https://github.com/balanced/balanced-ios" s.license = { :type => 'MIT', :file => 'Balanced/LICENSE' } s.author = { "Ben Mills" => "ben@unfiniti.com" } - s.source = { :git => "https://github.com/balanced/balanced-ios.git", :tag => "0.2" } + s.source = { :git => "https://github.com/balanced/balanced-ios.git", :tag => "0.4" } s.source_files = 'Balanced' s.platform = :ios, '5.0'