From 8fdb2ba7df7eaeec18f2e6b81978b52979b3d1d6 Mon Sep 17 00:00:00 2001 From: steven Date: Wed, 20 Feb 2013 11:38:18 -0500 Subject: [PATCH] renamed --- .../0.0.1/Google-API-Client.podspec | 41 +++++++++++++++++++ GoogleClient/0.0.1/GoogleClient.podspec | 21 ---------- 2 files changed, 41 insertions(+), 21 deletions(-) create mode 100644 Google-API-Client/0.0.1/Google-API-Client.podspec delete mode 100644 GoogleClient/0.0.1/GoogleClient.podspec diff --git a/Google-API-Client/0.0.1/Google-API-Client.podspec b/Google-API-Client/0.0.1/Google-API-Client.podspec new file mode 100644 index 00000000..18739b06 --- /dev/null +++ b/Google-API-Client/0.0.1/Google-API-Client.podspec @@ -0,0 +1,41 @@ +Pod::Spec.new do |s| + s.name = 'Google-API-Client' + s.version = '0.0.1' + s.license = { + :type => 'Apache 2.0', + :text => <<-LICENSE + Copyright (c) 2011 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + LICENSE + } + + s.summary = "Written by Google, this library is a flexible and efficient Objective-C framework for accessing JSON APIs." + s.homepage = 'http://code.google.com/p/google-api-objectivec-client/' + s.author = { 'Google, Inc.' => 'http://code.google.com/p/google-api-objectivec-client/' } + s.source = { :svn => 'http://google-api-objectivec-client.googlecode.com/svn/trunk/' } + s.resource = 'Source/OAuth2/Touch/GTMOAuth2ViewTouch.xib' + s.platform = :ios, '5.0' + + s.source_files = 'Source/*.{h,m}', 'Source/HTTPFetcher/*.{h,m}', 'Source/Networking', + 'Source/OAuth2/*.{h,m}', 'Source/OAuth2/Touch', 'Source/Objects', 'Source/Utilities' + + s.subspec 'Drive' do |drive| + drive.source_files = 'Source/Services/Drive/**/*.{h,m}' + drive.frameworks = 'Security', 'SystemConfiguration' + end + + s.subspec 'All' do |all| + all.source_files = 'Source/Services/**/*.{h,m}' + end +end \ No newline at end of file diff --git a/GoogleClient/0.0.1/GoogleClient.podspec b/GoogleClient/0.0.1/GoogleClient.podspec deleted file mode 100644 index 95cda033..00000000 --- a/GoogleClient/0.0.1/GoogleClient.podspec +++ /dev/null @@ -1,21 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'GoogleClient' - s.version = '0.0.1' - s.license = { :type => 'Copyright', :text => 'Copyright 2012 Google Inc.' } - s.summary = "Written by Google, this library is a flexible and efficient Objective-C framework for accessing JSON APIs." - s.homepage = 'http://code.google.com/p/google-api-objectivec-client/' - s.author = { 'Google, Inc.' => 'http://code.google.com/p/google-api-objectivec-client/' } - s.source = { :svn => 'http://google-api-objectivec-client.googlecode.com/svn/trunk/' } - - s.platform = :ios - s.source_files = 'Source/*.{h,m}', 'Source/HTTPFetcher/*.{h,m}', 'Source/JSON', 'Source/Networking', - 'Source/OAuth2/*.{h,m}', 'Source/OAuth2/Touch', 'Source/Objects', 'Source/Utilities' - - s.resource = 'Source/OAuth2/Touch/GTMOAuth2ViewTouch.xib' - - s.subspec 'Drive' do |drive| - drive.source_files = 'Source/Services/Drive/**/*.{h,m}' - drive.frameworks = 'Security', 'SystemConfiguration' - end - -end \ No newline at end of file