dropio 1.7.3 → 1.7.4
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 -2
- metadata +2 -2
data/dropio.gemspec
CHANGED
data/lib/dropio/client.rb
CHANGED
@@ -94,7 +94,7 @@ class Dropio::Client
|
|
94
94
|
end
|
95
95
|
|
96
96
|
def generate_asset_url(asset)
|
97
|
-
self.service.
|
97
|
+
self.service.generate_asset_url(asset.drop.name, asset.name, asset.drop.default_token)
|
98
98
|
end
|
99
99
|
|
100
100
|
def generate_original_file_url(asset)
|
data/lib/dropio.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module Dropio
|
2
|
-
VERSION = '1.7.
|
2
|
+
VERSION = '1.7.4'
|
3
3
|
|
4
4
|
class MissingResourceError < Exception; end
|
5
5
|
class AuthorizationError < Exception; end
|
@@ -14,7 +14,6 @@ module Dropio
|
|
14
14
|
|
15
15
|
end
|
16
16
|
|
17
|
-
require 'rubygems'
|
18
17
|
require 'rbconfig'
|
19
18
|
require 'mime/types'
|
20
19
|
require 'httparty'
|