README.md in dbox-0.3.0 vs README.md in dbox-0.4.0

- old
+ new

@@ -95,10 +95,16 @@ ```sh $ dbox push [<local_path>] ``` +#### Move (move/rename the Dropbox folder) + +```sh +$ dbox move <new_remote_path> [<local_path>] +``` + #### Example ```sh $ export DROPBOX_APP_KEY=cmlrrjd3j0gbend $ export DROPBOX_APP_SECRET=uvuulp75xf9jffl @@ -138,10 +144,16 @@ ``` Using dbox from Ruby -------------------- +The Ruby clone, pull, and push APIs return a hash listing the changes made during that pull/push. + +```ruby +{ :created => ["foo.txt"], :deleted => [], :updated => [] } +``` + ### Usage #### Setup * Authorize beforehand with the command-line tool @@ -170,9 +182,15 @@ #### Push (upload changes to Dropbox) ```ruby Dbox.push(local_path) +``` + +#### Move (move/rename the Dropbox folder) + +```ruby +Dbox.move(new_remote_path, local_path) ``` #### Example ```sh