Exception: ActionController::MethodNotAllowed

Inherits:
ActionControllerError show all
Defined in:
lib/action_controller/base.rb

Overview

:nodoc:

Direct Known Subclasses

NotImplemented

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*allowed_methods) ⇒ MethodNotAllowed

Returns a new instance of MethodNotAllowed.



33
34
35
36
# File 'lib/action_controller/base.rb', line 33

def initialize(*allowed_methods)
  super("Only #{allowed_methods.to_sentence} requests are allowed.")
  @allowed_methods = allowed_methods
end

Instance Attribute Details

#allowed_methodsObject (readonly)

Returns the value of attribute allowed_methods.



31
32
33
# File 'lib/action_controller/base.rb', line 31

def allowed_methods
  @allowed_methods
end

Instance Method Details

#allowed_methods_headerObject



38
39
40
# File 'lib/action_controller/base.rb', line 38

def allowed_methods_header
  allowed_methods.map { |method_symbol| method_symbol.to_s.upcase } * ', '
end

#handle_response!(response) ⇒ Object



42
43
44
# File 'lib/action_controller/base.rb', line 42

def handle_response!(response)
  response.headers['Allow'] ||= allowed_methods_header
end