Module: RestClient
- Defined in:
- lib/cushion/core_ext.rb
Class Method Summary collapse
Class Method Details
.copy(url, headers = {}) ⇒ Object
16 17 18 19 20 |
# File 'lib/cushion/core_ext.rb', line 16 def self.copy(url, headers={}) Request.execute(:method => :copy, :url => url, :headers => headers) end |
.move(url, headers = {}) ⇒ Object
22 23 24 25 26 |
# File 'lib/cushion/core_ext.rb', line 22 def self.move(url, headers={}) Request.execute(:method => :move, :url => url, :headers => headers) end |