lib/rapidash/client.rb in rapidash-0.0.3 vs lib/rapidash/client.rb in rapidash-0.0.4

- old
+ new

@@ -17,9 +17,13 @@ def put(url, options = {}) request(:put, url, options) end + def patch(url, options = {}) + request(:patch, url, options) + end + def delete(url, options = {}) request(:delete, url, options) end end end