dummy_dropbox_sdk 0.0.12 → 0.0.13
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/lib/dummy_dropbox_sdk.rb +7 -0
- data/lib/version.rb +1 -1
- metadata +4 -4
data/lib/dummy_dropbox_sdk.rb
CHANGED
|
@@ -85,6 +85,13 @@ class DropboxClient
|
|
|
85
85
|
FileUtils.copy_file(file_obj.path, File.join(DummyDropbox::root_path, to_path))
|
|
86
86
|
return self.metadata(to_path)
|
|
87
87
|
end
|
|
88
|
+
|
|
89
|
+
def account_info()
|
|
90
|
+
{
|
|
91
|
+
'display_name' => 'Dummy Dropbox SDK',
|
|
92
|
+
'email' => 'dummy_dropbox@example.com'
|
|
93
|
+
}
|
|
94
|
+
end
|
|
88
95
|
|
|
89
96
|
# TODO these methods I don't used yet. They are commented out because they
|
|
90
97
|
# have to be checked against the api if the signature match
|
data/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dummy_dropbox_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 13
|
|
10
|
+
version: 0.0.13
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Panter llc
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2012-02-13 00:00:00 +01:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|