Class: Adhearsion::Components::ComponentManager::ComponentMethodDefinitionContainer
Instance Attribute Summary collapse
-
#scopes ⇒ Object
readonly
Returns the value of attribute scopes.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(*scopes, &block) ⇒ ComponentMethodDefinitionContainer
constructor
A new instance of ComponentMethodDefinitionContainer.
Methods inherited from Module
Constructor Details
#initialize(*scopes, &block) ⇒ ComponentMethodDefinitionContainer
Returns a new instance of ComponentMethodDefinitionContainer.
187 188 189 190 |
# File 'lib/adhearsion/component_manager.rb', line 187 def initialize(*scopes, &block) @scopes = [] super(&block) end |
Instance Attribute Details
#scopes ⇒ Object (readonly)
Returns the value of attribute scopes.
186 187 188 |
# File 'lib/adhearsion/component_manager.rb', line 186 def scopes @scopes end |
Class Method Details
.method_added(method_name) ⇒ Object
180 181 182 183 |
# File 'lib/adhearsion/component_manager.rb', line 180 def method_added(method_name) @methods ||= [] @methods << method_name end |