dropio 1.7.4 → 1.7.5

Sign up to get free protection for your applications and to get access to all the features.
data/dropio.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{dropio}
5
- s.version = "1.7.4"
5
+ s.version = "1.7.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jake Good"]
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
@@ -1,5 +1,5 @@
1
1
  module Dropio
2
- VERSION = '1.7.4'
2
+ VERSION = '1.7.5'
3
3
 
4
4
  class MissingResourceError < Exception; end
5
5
  class AuthorizationError < Exception; end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 7
8
- - 4
9
- version: 1.7.4
8
+ - 5
9
+ version: 1.7.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jake Good