mojodna-oauth 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.3.4 2009-05-06
2
+
3
+ * OAuth::Client::Helper uses OAuth::VERSION (chadisfaction)
4
+ * Fix OAuth::RequestProxy::ActionControllerRequest's handling of params
5
+ (Tristan Groléat)
6
+
1
7
  == 0.3.3 2009-05-04
2
8
 
3
9
  * Corrected OAuth XMPP namespace (Seth)
@@ -2,6 +2,7 @@ require 'oauth/client'
2
2
  require 'oauth/consumer'
3
3
  require 'oauth/helper'
4
4
  require 'oauth/token'
5
+ require 'oauth/version'
5
6
  require 'oauth/signature/hmac/sha1'
6
7
 
7
8
  module OAuth::Client
@@ -44,7 +44,7 @@ module OAuth::RequestProxy
44
44
  join('&').split('&').
45
45
  reject(&:blank?).
46
46
  map { |p| p.split('=').map{|esc| CGI.unescape(esc)} }.
47
- reject { |kv| kv =~ /^oauth_signature=.*/}
47
+ reject { |kv| kv[0] == 'oauth_signature'}
48
48
  end
49
49
 
50
50
  protected
data/lib/oauth/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module OAuth #:nodoc:
2
- VERSION = '0.3.3'
2
+ VERSION = '0.3.4'
3
3
  end
data/oauth.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{oauth}
5
- s.version = "0.3.3"
5
+ s.version = "0.3.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Pelle Braendgaard", "Blaine Cook", "Larry Halff", "Jesse Clark", "Jon Crosby", "Seth Fitzsimmons", "Matt Sanford"]
9
- s.date = %q{2009-05-04}
9
+ s.date = %q{2009-05-06}
10
10
  s.default_executable = %q{oauth}
11
11
  s.description = %q{OAuth Core Ruby implementation}
12
12
  s.email = %q{oauth-ruby@googlegroups.com}
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>Ruby OAuth GEM</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/oauth"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/oauth" class="numbers">0.3.3</a>
36
+ <a href="http://rubyforge.org/projects/oauth" class="numbers">0.3.4</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
  <p>This is a RubyGem for implementing both OAuth clients and servers in Ruby applications.</p>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mojodna-oauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pelle Braendgaard
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2009-05-04 00:00:00 -07:00
18
+ date: 2009-05-06 00:00:00 -07:00
19
19
  default_executable: oauth
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency