README.md in cloudapp_api-0.0.1 vs README.md in cloudapp_api-0.0.2
- old
+ new
@@ -1,14 +1,11 @@
# CloudApp API
A simple Ruby wrapper for the [CloudApp API](http://support.getcloudapp.com/faqs/developers/api). Uses [HTTParty](http://github.com/jnunemaker/httparty) with a simple ActiveResource-like interface.
-Note: This is functional, but very much a work in progress.
-
## TODO
-* Get file uploads working
* Add tests
* Improve the docs
## Installation
@@ -65,16 +62,14 @@
@item = CloudApp::Item.create :bookmark, {:name => name, :redirect_url => url}
### Upload a file
-NOTE! This is not working yet
-
@item = client.upload file_name
# or ..
- @item = CloudApp::Item.create :file, {:path => file_name}
+ @item = CloudApp::Item.create :upload, {:file => file_name}
### Delete an item
client.delete short_url