From 9dffb00ca3fac8013d00678020afbcf8dcaa3be3 Mon Sep 17 00:00:00 2001 From: David Beck Date: Tue, 10 Dec 2013 10:37:53 -0800 Subject: [PATCH 1/3] Added podspec --- RMPhoneFormat.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 RMPhoneFormat.podspec diff --git a/RMPhoneFormat.podspec b/RMPhoneFormat.podspec new file mode 100644 index 0000000..a521ba1 --- /dev/null +++ b/RMPhoneFormat.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "RMPhoneFormat" + s.version = "0.0.1" + s.summary = "RMPhoneFormat provides a simple to use class for formatting phone numbers in iOS apps. The formatting should replicate what you would see in the Contacts app for the same phone number." + s.homepage = "https://github.com/rmaddy/RMPhoneFormat" + s.license = 'BSD' + s.author = "Rick Maddy" + s.source = { :git => "https://github.com/rmaddy/RMPhoneFormat.git", :commit => "23236e0925aa215bd83b794f7660ad7d4d79ecc6" } + s.platform = :ios, '6.0' + s.ios.deployment_target = "6.0" + s.osx.deployment_target = "10.8" + s.source_files = 'RMPhoneFormat/RMPhoneFormat.{h,m}' + s.requires_arc = true +end From 912ea035b69d9a8f2f45db4f80fa10187c3c8d22 Mon Sep 17 00:00:00 2001 From: David Beck Date: Wed, 11 Dec 2013 12:12:57 -0800 Subject: [PATCH 2/3] Fixed podspec --- RMPhoneFormat.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RMPhoneFormat.podspec b/RMPhoneFormat.podspec index a521ba1..f845537 100644 --- a/RMPhoneFormat.podspec +++ b/RMPhoneFormat.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "RMPhoneFormat" s.version = "0.0.1" - s.summary = "RMPhoneFormat provides a simple to use class for formatting phone numbers in iOS apps. The formatting should replicate what you would see in the Contacts app for the same phone number." + s.summary = "A simple to use class for formatting phone numbers that uses the same exact formatting as the contacts app." s.homepage = "https://github.com/rmaddy/RMPhoneFormat" s.license = 'BSD' s.author = "Rick Maddy" From 2da2202e723bf6cff8509d7d80bde2db16d8f207 Mon Sep 17 00:00:00 2001 From: Harlan Date: Mon, 10 Aug 2015 09:54:35 -0400 Subject: [PATCH 3/3] Added watchOS deployment target. --- RMPhoneFormat.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/RMPhoneFormat.podspec b/RMPhoneFormat.podspec index f845537..2133c59 100644 --- a/RMPhoneFormat.podspec +++ b/RMPhoneFormat.podspec @@ -9,6 +9,7 @@ Pod::Spec.new do |s| s.platform = :ios, '6.0' s.ios.deployment_target = "6.0" s.osx.deployment_target = "10.8" + s.watchos.deployment_target = "2.0" s.source_files = 'RMPhoneFormat/RMPhoneFormat.{h,m}' s.requires_arc = true end