module ActionDispatch::Routing::Mapper::HttpHelpers

Public Instance Methods

delete(*args, &block) click to toggle source

Define a route that only recognizes HTTP PUT. For supported arguments, see Base#match.

Example:

delete 'broccoli', :to => 'food#broccoli'

# File lib/action_dispatch/routing/mapper.rb, line 492
def delete(*args, &block)
  map_method(:delete, *args, &block)
end
get(*args, &block) click to toggle source

Define a route that only recognizes HTTP GET. For supported arguments, see Base#match.

Example:

get 'bacon', :to => 'food#bacon'

# File lib/action_dispatch/routing/mapper.rb, line 462
def get(*args, &block)
  map_method(:get, *args, &block)
end
post(*args, &block) click to toggle source

Define a route that only recognizes HTTP POST. For supported arguments, see Base#match.

Example:

post 'bacon', :to => 'food#bacon'

# File lib/action_dispatch/routing/mapper.rb, line 472
def post(*args, &block)
  map_method(:post, *args, &block)
end
put(*args, &block) click to toggle source

Define a route that only recognizes HTTP PUT. For supported arguments, see Base#match.

Example:

put 'bacon', :to => 'food#bacon'

# File lib/action_dispatch/routing/mapper.rb, line 482
def put(*args, &block)
  map_method(:put, *args, &block)
end

Private Instance Methods

map_method(method, *args, &block) click to toggle source
# File lib/action_dispatch/routing/mapper.rb, line 497
def map_method(method, *args, &block)
  options = args.extract_options!
  options[:via] = method
  args.push(options)
  match(*args, &block)
  self
end