gplus 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,15 +2,19 @@
2
2
 
3
3
  ## Intro
4
4
 
5
- The Google+ API was opened today (15th September 2011).
5
+ GPlus is a complete implementation of the Google+ API, with help from OAuth2 and MultiJson.
6
6
 
7
- So far, there are two stub gems, `googleplus` and `google_plus`, both of which do literally nothing.
7
+ I'm aiming to produce something light-weight, well documented, and thoroughly tested.
8
8
 
9
- Lets work together to get Ruby on Google+ ASAP!
9
+ It currently has full support for People and Activities, and for authorized requests.
10
+
11
+ Unauthorized requests for public resources is coming in version 0.3.0 (aiming for 2011/09/17)
10
12
 
11
13
  ## Installation
12
14
 
13
- gem install gplus
15
+ Add GPlus to your Gemfile, then run `bundle install`.
16
+
17
+ gem "gplus", "~> 0.2.0"
14
18
 
15
19
  ## Creating and configuring your application
16
20
 
@@ -1,5 +1,5 @@
1
1
  module Gplus
2
- module Activity
2
+ module Client
3
3
  def get_activity(id)
4
4
  get("activities/#{id}")
5
5
  end
data/lib/gplus/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gplus
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gplus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-09-16 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: multi_json
16
- requirement: &17028120 !ruby/object:Gem::Requirement
16
+ requirement: &25370740 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '1.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *17028120
24
+ version_requirements: *25370740
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: oauth2
27
- requirement: &17027640 !ruby/object:Gem::Requirement
27
+ requirement: &25369980 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0.5'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *17027640
35
+ version_requirements: *25369980
36
36
  description: A complete implementation of the Google plus API for Ruby
37
37
  email:
38
38
  - nicholas@2suggestions.com.au