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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 600ced3527f7c58bb857aae15fd3a3c8c720043a
4
- data.tar.gz: 8e1b15b2a0c00a359d8434d92b7f1d353e07add2
3
+ metadata.gz: f6ae8bbd93af106cc0fb3f30b2d9e58714e5935e
4
+ data.tar.gz: 5de569fd821920113c74fc3263a98ea14af22b48
5
5
  SHA512:
6
- metadata.gz: 99f733ff664a7ddfa185c071b3bfe6ed3568455bf29e219aefda65381312c748e29066b031f69aff68d1282c62ecd26f6051aca5569651bc13a64b29f77120a4
7
- data.tar.gz: 77a94aecc6f57a33818559184708dd69a23f850f20992b04610a2a463e89941dd4c89d525bb15e18f366faaa29b94a8b028d545d0b915e6873d641999fc0afc6
6
+ metadata.gz: 5fdfe8c8ea983ad211c27a47f6dac8aa6b329c7440482951dda9c9c50aae921f2416db8206b00ced85f2e8a31f1463d75d8bbc0eba7bb31e42ed7d4076a43f10
7
+ data.tar.gz: 67356bfb3056ea1d9008e536398fa3aff7bceead5d25be1c9722378ead34f2b0e8d9cba9d488c74ed4826e87a4571b0531174174d43fc86f52c3ea8f24210c51
@@ -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
- @curl_response = curl_response
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
- @curl_response.body
15
+ @raw_response.body
15
16
  end
16
17
 
17
18
  def cursor
@@ -1,3 +1,3 @@
1
1
  module DropboxApiV2
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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.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-06-30 00:00:00.000000000 Z
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.4.5.1
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