From 3389fb68605514afe0f14dd712e7d51ca0cfb054 Mon Sep 17 00:00:00 2001 From: Liljana Date: Tue, 15 Jan 2013 16:53:37 +0100 Subject: [PATCH 1/4] making the STUtils Keychainwrapper standalone --- Security/STKeychain.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Security/STKeychain.m b/Security/STKeychain.m index 72a3868..e0109eb 100644 --- a/Security/STKeychain.m +++ b/Security/STKeychain.m @@ -27,8 +27,7 @@ // OTHER DEALINGS IN THE SOFTWARE. // -#import "STUtils.h" - +#import "STKeychain.h" #define USE_MAC_KEYCHAIN_API !TARGET_OS_IPHONE || (TARGET_IPHONE_SIMULATOR && __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_3_0) From 7af2a8de4cc2a47708dc2f1f6b68cdace4b4e30f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Benaiteau?= Date: Tue, 3 Mar 2015 14:51:07 +0100 Subject: [PATCH 2/4] Add Podspec --- STUtils.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 STUtils.podspec diff --git a/STUtils.podspec b/STUtils.podspec new file mode 100644 index 0000000..4d5e9fd --- /dev/null +++ b/STUtils.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "STUtils" + s.version = "0.0.1" + s.summary = "Various useful Objective-C code." + s.homepage = "https://github.com/ldandersen/STUtils.git" + s.license = "MIT" + s.authors = { 'Buzz Andersen' => 'buzz@scifihifi.com' } + + s.source = { :git => "https://github.com/ldandersen/STUtils.git", :commit => "3389fb68605514afe0f14dd712e7d51ca0cfb054" } + + s.subspec 'Additions' do |ios| + ios.source_files = "iOS/**/*" + end + + s.subspec 'Security' do |security| + security.source_files = "Security" + security.frameworks = "Security" + end +end From 6586a8d2fa5430de562b952ae2d2095d53c1d44d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Benaiteau?= Date: Tue, 3 Mar 2015 15:16:03 +0100 Subject: [PATCH 3/4] non arc code --- STUtils.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/STUtils.podspec b/STUtils.podspec index 4d5e9fd..185afa1 100644 --- a/STUtils.podspec +++ b/STUtils.podspec @@ -7,7 +7,8 @@ Pod::Spec.new do |s| s.authors = { 'Buzz Andersen' => 'buzz@scifihifi.com' } s.source = { :git => "https://github.com/ldandersen/STUtils.git", :commit => "3389fb68605514afe0f14dd712e7d51ca0cfb054" } - + s.requires_arc = false + s.subspec 'Additions' do |ios| ios.source_files = "iOS/**/*" end From 1551036c57ed316806e0f7bed294755bcfb448f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Benaiteau?= Date: Tue, 3 Mar 2015 15:19:22 +0100 Subject: [PATCH 4/4] Update STUtils.podspec --- STUtils.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STUtils.podspec b/STUtils.podspec index 185afa1..394e2e0 100644 --- a/STUtils.podspec +++ b/STUtils.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |s| s.license = "MIT" s.authors = { 'Buzz Andersen' => 'buzz@scifihifi.com' } - s.source = { :git => "https://github.com/ldandersen/STUtils.git", :commit => "3389fb68605514afe0f14dd712e7d51ca0cfb054" } + s.source = { :git => "https://github.com/ldandersen/STUtils.git", :branch => "independentKeychain" } s.requires_arc = false s.subspec 'Additions' do |ios|