dropbox_api_v2 0.1.1 → 0.1.2
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.
- checksums.yaml +4 -4
- data/dropbox_api_v2.gemspec +2 -2
- data/lib/dropbox_api_v2/response.rb +3 -2
- data/lib/dropbox_api_v2/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6ae8bbd93af106cc0fb3f30b2d9e58714e5935e
|
|
4
|
+
data.tar.gz: 5de569fd821920113c74fc3263a98ea14af22b48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5fdfe8c8ea983ad211c27a47f6dac8aa6b329c7440482951dda9c9c50aae921f2416db8206b00ced85f2e8a31f1463d75d8bbc0eba7bb31e42ed7d4076a43f10
|
|
7
|
+
data.tar.gz: 67356bfb3056ea1d9008e536398fa3aff7bceead5d25be1c9722378ead34f2b0e8d9cba9d488c74ed4826e87a4571b0531174174d43fc86f52c3ea8f24210c51
|
data/dropbox_api_v2.gemspec
CHANGED
|
@@ -6,8 +6,8 @@ require 'dropbox_api_v2/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "dropbox_api_v2"
|
|
8
8
|
spec.version = DropboxApiV2::VERSION
|
|
9
|
-
spec.authors = ["smurfik"]
|
|
10
|
-
spec.email = ["tammy@mlpinit.com"]
|
|
9
|
+
spec.authors = ["smurfik", "Bookis Worthy"]
|
|
10
|
+
spec.email = ["tammy@mlpinit.com", "bookis.worthy@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Ruby client library for the Dropbox Api V2}
|
|
13
13
|
spec.homepage = "https://github.com/smurfik/dropbox_api_v2"
|
|
@@ -2,8 +2,9 @@ require 'json'
|
|
|
2
2
|
|
|
3
3
|
module DropboxApiV2
|
|
4
4
|
class Response
|
|
5
|
+
attr_reader :raw_response
|
|
5
6
|
def initialize(curl_response)
|
|
6
|
-
@
|
|
7
|
+
@raw_response = curl_response
|
|
7
8
|
end
|
|
8
9
|
|
|
9
10
|
def json
|
|
@@ -11,7 +12,7 @@ module DropboxApiV2
|
|
|
11
12
|
end
|
|
12
13
|
|
|
13
14
|
def body
|
|
14
|
-
@
|
|
15
|
+
@raw_response.body
|
|
15
16
|
end
|
|
16
17
|
|
|
17
18
|
def cursor
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dropbox_api_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- smurfik
|
|
8
|
+
- Bookis Worthy
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: exe
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
12
|
+
date: 2016-07-07 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: bundler
|
|
@@ -69,6 +70,7 @@ dependencies:
|
|
|
69
70
|
description:
|
|
70
71
|
email:
|
|
71
72
|
- tammy@mlpinit.com
|
|
73
|
+
- bookis.worthy@gmail.com
|
|
72
74
|
executables: []
|
|
73
75
|
extensions: []
|
|
74
76
|
extra_rdoc_files: []
|
|
@@ -107,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
107
109
|
version: '0'
|
|
108
110
|
requirements: []
|
|
109
111
|
rubyforge_project:
|
|
110
|
-
rubygems_version: 2.
|
|
112
|
+
rubygems_version: 2.5.1
|
|
111
113
|
signing_key:
|
|
112
114
|
specification_version: 4
|
|
113
115
|
summary: Ruby client library for the Dropbox Api V2
|