Method: Merb::Controller.callable_actions

Defined in:
lib/merb-core/controller/merb_controller.rb

.callable_actionsObject

The list of actions that are callable, after taking defaults, _hidden_actions and _shown_actions into consideration. It is calculated once, the first time an action is dispatched for this controller.

Returns

SimpleSet

A set of actions that should be callable.

:api: public



141
142
143
# File 'lib/merb-core/controller/merb_controller.rb', line 141

def self.callable_actions
  @callable_actions ||= Extlib::SimpleSet.new(_callable_methods)
end