Skip to content

Commit

Permalink
added account_info call
Browse files Browse the repository at this point in the history
  • Loading branch information
panterch committed Feb 13, 2012
1 parent 5ac3a4a commit 1235d2d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/dummy_dropbox_sdk.rb
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ def put_file(to_path, file_obj, overwrite=false, parent_rev=nil)
FileUtils.copy_file(file_obj.path, File.join(DummyDropbox::root_path, to_path))
return self.metadata(to_path)
end

def account_info()
{
'display_name' => 'Dummy Dropbox SDK',
'email' => '[email protected]'
}
end

# TODO these methods I don't used yet. They are commented out because they
# have to be checked against the api if the signature match
Expand Down

0 comments on commit 1235d2d

Please sign in to comment.