jwbynum-vimeo 0.2.2 → 0.2.3

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.
@@ -1,3 +1,6 @@
1
+ == 0.2.3, released 2009-04-09
2
+ * Removed the escapes from title, captions, and comments to avoid converting spaces into plusses.
3
+
1
4
  == 0.2.1, released 2009-01-06
2
5
 
3
6
  * Last version was missing files.
@@ -111,10 +111,10 @@ module Vimeo
111
111
  def search(q, options={ :page => 1, :per_page => 25, :full_response => 0, :auth_token => nil })
112
112
  user_id = options[:user_id]
113
113
  contacts_only = options[:contacts_only]
114
- escaped_query = CGI.escape(q)
114
+
115
115
 
116
116
  sig_options = {
117
- :query => escaped_query,
117
+ :query => q,
118
118
  :page => options[:page],
119
119
  :per_page => options[:per_page],
120
120
  :fullResponse => options[:full_response],
@@ -158,7 +158,7 @@ module Vimeo
158
158
  end
159
159
 
160
160
  def set_title(video_id, title, auth_token)
161
- #escaped_title = CGI.escape(title)
161
+
162
162
 
163
163
  sig_options = {
164
164
  :video_id => video_id,
@@ -171,11 +171,11 @@ module Vimeo
171
171
  end
172
172
 
173
173
  def set_caption(video_id, caption, auth_token)
174
- escaped_caption = CGI.escape(caption)
174
+
175
175
 
176
176
  sig_options = {
177
177
  :video_id => video_id,
178
- :caption => escaped_caption,
178
+ :caption => caption,
179
179
  :auth_token => auth_token,
180
180
  :method => "vimeo.videos.setCaption"
181
181
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jwbynum-vimeo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Hooks