Exception: ActionController::MethodNotAllowed
- Inherits:
-
ActionControllerError
- Object
- StandardError
- ActionControllerError
- ActionController::MethodNotAllowed
- Defined in:
- lib/action_controller/base.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#allowed_methods ⇒ Object
readonly
Returns the value of attribute allowed_methods.
Instance Method Summary collapse
- #allowed_methods_header ⇒ Object
- #handle_response!(response) ⇒ Object
-
#initialize(*allowed_methods) ⇒ MethodNotAllowed
constructor
A new instance of MethodNotAllowed.
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_methods ⇒ Object (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_header ⇒ Object
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 |