From 5ad2839162fd49283cf67662234bad8b6768372e Mon Sep 17 00:00:00 2001 From: Rob Date: Thu, 15 Oct 2015 12:47:05 +0100 Subject: [PATCH] Trying more limited dependency --- HSGoogleDrivePicker.podspec | 6 +++--- README.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/HSGoogleDrivePicker.podspec b/HSGoogleDrivePicker.podspec index 4c8a8ec..d823043 100644 --- a/HSGoogleDrivePicker.podspec +++ b/HSGoogleDrivePicker.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| s.name = "HSGoogleDrivePicker" - s.version = "0.1.1" + s.version = "0.1.2" s.summary = "A sane and simple file picker for Google Drive." s.homepage = "https://github.com/ConfusedVorlon/HSGoogleDrivePicker" @@ -14,11 +14,11 @@ Pod::Spec.new do |s| s.platform = :ios, "7.0" - s.source = { :git => "https://github.com/ConfusedVorlon/HSGoogleDrivePicker.git", :tag => "0.1.1" } + s.source = { :git => "https://github.com/ConfusedVorlon/HSGoogleDrivePicker.git", :tag => "0.1.2" } s.source_files = "HSGoogleDrivePicker/HSGoogleDrivePicker" s.requires_arc = true s.dependency 'AsyncImageView' - s.dependency 'Google-API-Client' + s.dependency 'Google-API-Client/Drive' end diff --git a/README.md b/README.md index d915ade..ec27384 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,11 @@ This is the API that Google should have written. ## Example -`#import “HS_GDrivePicker.h"` +`#import "HSDrivePicker.h"` ```objective-c -HS_GDrivePicker *picker=[[HS_GDrivePicker alloc] initWithId:@"YOUR ID HERE" +HSDrivePicker *picker=[[HSDrivePicker alloc] initWithId:@"YOUR ID HERE" secret:@"YOUR SECRET HERE"]; [picker pickFromViewController:self @@ -39,7 +39,7 @@ You can install HSGoogleDrivePicker in your project by using [CocoaPods](https:/ ```Ruby -pod 'HSGoogleDrivePicker', '~> 0.1.0’ +pod 'HSGoogleDrivePicker', '~> 0.1’ ``` @@ -57,11 +57,11 @@ Run the example code above using your keys. The completion handler returns with a GTLDriveFile which has all the info you need. -`#import "HS_GDrivePicker.h"` +`#import "HSDrivePicker.h"` ```objective-c -HS_GDrivePicker *picker=[[HS_GDrivePicker alloc] initWithId:@"YOUR ID HERE" +HSDrivePicker *picker=[[HSDrivePicker alloc] initWithId:@"YOUR ID HERE" secret:@"YOUR SECRET HERE"]; [picker pickFromViewController:self