fireeagle 0.6.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.6.3
2
+
3
+ * Bugfix for Ruby 1.9
4
+
1
5
  == 0.6.2
2
6
 
3
7
  * Offload heavy lifting to OAuth for tokens and signing requests
@@ -265,7 +265,7 @@ class FireEagle
265
265
  when :post
266
266
  access_token.request(:post, url, options[:params])
267
267
  when :get
268
- qs = options[:params].collect { |k,v| "#{CGI.escape(k.to_s)}=#{CGI.escape(v.to_s)}" }.join("&")
268
+ qs = options[:params].collect { |k,v| "#{CGI.escape(k.to_s)}=#{CGI.escape(v.to_s)}" }.join("&") if options[:params]
269
269
  access_token.request(:get, "#{url}?#{qs}")
270
270
  else
271
271
  raise ArgumentError, "method #{method} not supported"
@@ -2,7 +2,7 @@ class FireEagle #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 6
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fireeagle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesse Newland
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-03-13 00:00:00 -04:00
12
+ date: 2008-04-02 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -96,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  requirements: []
97
97
 
98
98
  rubyforge_project: fireeagle
99
- rubygems_version: 1.0.1
99
+ rubygems_version: 1.1.0
100
100
  signing_key:
101
101
  specification_version: 2
102
102
  summary: Ruby wrapper for Yahoo!'s FireEagle