dropio 1.7.4 → 1.7.5
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/dropio.gemspec +1 -1
- data/lib/dropio/client.rb +1 -1
- data/lib/dropio.rb +1 -1
- metadata +2 -2
data/dropio.gemspec
CHANGED
data/lib/dropio/client.rb
CHANGED
@@ -214,7 +214,7 @@ class Dropio::Client
|
|
214
214
|
when :drops then return response['drops'].collect{|s| Dropio::Drop.new(d)}
|
215
215
|
when :asset then return Dropio::Asset.new(response)
|
216
216
|
when :assets then return response['assets'].collect{|a| Dropio::Asset.new(a)}
|
217
|
-
when :comment then return Comment.new(response)
|
217
|
+
when :comment then return Dropio::Comment.new(response)
|
218
218
|
when :comments then return response['comments'].collect{|c| Dropio::Comment.new(c)}
|
219
219
|
when :subscription then return Dropio::Subscription.new(response)
|
220
220
|
when :subscriptions then return response['subscriptions'].collect{|s| Dropio::Subscription.new(s)}
|
data/lib/dropio.rb
CHANGED