README.md in rapidash-0.0.5 vs README.md in rapidash-0.0.6
- old
+ new
@@ -72,10 +72,10 @@
The main thing a client must do is define a method, `oauth` and `http` are currently supported. You can also define resources which links a resource as defined above to the client.
```ruby
class Client < Rapidash::Client
method :oauth
- resource :users
+ resource :users, :repos #An array can be passed through
use_patch # This will use PATCH when updating instead of POST
extension :json #Append the extension fo the urls
end
```