Module: ActionDispatch::Routing::Mapper::HttpHelpers

Defined in:
lib/calligraphy/rails/mapper.rb

Instance Method Summary collapse

Instance Method Details

#copy(*args, &block) ⇒ Object



4
5
6
7
# File 'lib/calligraphy/rails/mapper.rb', line 4

def copy(*args, &block)
  args = set_web_dav_args args
  map_method :copy, args, &block
end

#head(*args, &block) ⇒ Object



9
10
11
12
# File 'lib/calligraphy/rails/mapper.rb', line 9

def head(*args, &block)
  args = set_web_dav_args args
  map_method :head, args, &block
end

#lock(*args, &block) ⇒ Object



14
15
16
17
# File 'lib/calligraphy/rails/mapper.rb', line 14

def lock(*args, &block)
  args = set_web_dav_args args
  map_method :lock, args, &block
end

#mkcol(*args, &block) ⇒ Object



19
20
21
22
# File 'lib/calligraphy/rails/mapper.rb', line 19

def mkcol(*args, &block)
  args = set_web_dav_args args
  map_method :mkcol, args, &block
end

#move(*args, &block) ⇒ Object



24
25
26
27
# File 'lib/calligraphy/rails/mapper.rb', line 24

def move(*args, &block)
  args = set_web_dav_args args
  map_method :move, args, &block
end

#options(*args, &block) ⇒ Object



29
30
31
32
# File 'lib/calligraphy/rails/mapper.rb', line 29

def options(*args, &block)
  args = set_web_dav_args args
  map_method :options, args, &block
end

#propfind(*args, &block) ⇒ Object



34
35
36
37
# File 'lib/calligraphy/rails/mapper.rb', line 34

def propfind(*args, &block)
  args = set_web_dav_args args
  map_method :propfind, args, &block
end

#proppatch(*args, &block) ⇒ Object



39
40
41
42
# File 'lib/calligraphy/rails/mapper.rb', line 39

def proppatch(*args, &block)
  args = set_web_dav_args args
  map_method :proppatch, args, &block
end

#unlock(*args, &block) ⇒ Object



44
45
46
47
# File 'lib/calligraphy/rails/mapper.rb', line 44

def unlock(*args, &block)
  args = set_web_dav_args args
  map_method :unlock, args, &block
end

#web_dav_delete(*args, &block) ⇒ Object



49
50
51
52
# File 'lib/calligraphy/rails/mapper.rb', line 49

def web_dav_delete(*args, &block)
  args = set_web_dav_args args
  map_method :delete, args, &block
end

#web_dav_get(*args, &block) ⇒ Object



54
55
56
57
# File 'lib/calligraphy/rails/mapper.rb', line 54

def web_dav_get(*args, &block)
  args = set_web_dav_args args
  map_method :get, args, &block
end

#web_dav_put(*args, &block) ⇒ Object



59
60
61
62
# File 'lib/calligraphy/rails/mapper.rb', line 59

def web_dav_put(*args, &block)
  args = set_web_dav_args args
  map_method :put, args, &block
end