lib/rapidash/client.rb in rapidash-0.0.2 vs lib/rapidash/client.rb in rapidash-0.0.3
- old
+ new
@@ -12,7 +12,15 @@
end
def post(url, options = {})
request(:post, url, options)
end
+
+ def put(url, options = {})
+ request(:put, url, options)
+ end
+
+ def delete(url, options = {})
+ request(:delete, url, options)
+ end
end
end