Skip to content

Commit

Permalink
Trying more limited dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ConfusedVorlon committed Oct 15, 2015
1 parent 3111ef1 commit 5ad2839
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions HSGoogleDrivePicker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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’
```

Expand All @@ -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
Expand Down

0 comments on commit 5ad2839

Please sign in to comment.