pk-twitter_oauth 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.textile CHANGED
@@ -14,7 +14,6 @@ install:
14
14
 
15
15
  # gem sources --add http://gems.github.com
16
16
  # sudo gem install entangledstate-ruby-hmac
17
- # sudo gem install sporkd-oauth
18
17
 
19
18
  To make authorized requests with the client library you'll need to [create a Twitter OAuth Application](http://twitter.com/oauth_clients/new).
20
19
 
@@ -9,7 +9,7 @@ module TwitterOAuth
9
9
 
10
10
  # Updates the authenticating user's status.
11
11
  def update(message, options={})
12
- oauth_response = access_token.post('/statuses/update.json', options.merge(:status => message))
12
+ oauth_response = access_token.post('/statuses/update.json', options.merge('status' => message))
13
13
  JSON.parse(oauth_response.body)
14
14
  end
15
15
 
@@ -26,4 +26,4 @@ module TwitterOAuth
26
26
  end
27
27
 
28
28
  end
29
- end
29
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pk-twitter_oauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Kunc
@@ -12,6 +12,16 @@ cert_chain: []
12
12
  date: 2009-03-20 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: sporkd-oauth
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.3.6
24
+ version:
15
25
  - !ruby/object:Gem::Dependency
16
26
  name: json
17
27
  type: :runtime
@@ -20,7 +30,7 @@ dependencies:
20
30
  requirements:
21
31
  - - ">="
22
32
  - !ruby/object:Gem::Version
23
- version: 1.1.2
33
+ version: 1.1.7
24
34
  version:
25
35
  - !ruby/object:Gem::Dependency
26
36
  name: mime-types
@@ -30,7 +40,7 @@ dependencies:
30
40
  requirements:
31
41
  - - ">="
32
42
  - !ruby/object:Gem::Version
33
- version: "1.15"
43
+ version: "1.16"
34
44
  version:
35
45
  description: twitter_oauth is a Ruby library for talking to twitter using the new oauth method.
36
46
  email: pavel.kunc@gmail.com
@@ -58,6 +68,7 @@ files:
58
68
  - lib/twitter_oauth/utils.rb
59
69
  has_rdoc: false
60
70
  homepage: http://github.com/pk/twitter_oauth
71
+ licenses:
61
72
  post_install_message:
62
73
  rdoc_options:
63
74
  - --inline-source
@@ -79,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
90
  requirements: []
80
91
 
81
92
  rubyforge_project: twitter_oauth
82
- rubygems_version: 1.2.0
93
+ rubygems_version: 1.3.5
83
94
  signing_key:
84
95
  specification_version: 2
85
96
  summary: twitter_oauth is a Ruby library for talking to twitter using the new oauth method.