hot-coffee-twitter-ruby 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/twitter/common.rb +1 -1
  2. data/lib/twitter.rb +1 -1
  3. metadata +1 -1
@@ -5,7 +5,7 @@ module Twitter
5
5
  def self.to_params_str(params)
6
6
  return nil if params.empty?
7
7
  params.each do |key, value|
8
- params[key] = CGI.escape(CGI.escapeHTML(value))
8
+ params[key] = CGI.escape(CGI.escapeHTML(value.to_s))
9
9
  end
10
10
  params.to_a.map {|v| v.join('=')}.join('&')
11
11
  end
data/lib/twitter.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'twitter/rest_api'
2
2
 
3
3
  module Twitter
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hot-coffee-twitter-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - hot_coffee