Class: ConsoleBuddy::MethodStore
- Inherits:
-
Object
- Object
- ConsoleBuddy::MethodStore
- Defined in:
- lib/console_buddy/method_store.rb
Instance Attribute Summary collapse
-
#augment_helper_methods ⇒ Object
Returns the value of attribute augment_helper_methods.
-
#console_method ⇒ Object
Returns the value of attribute console_method.
Instance Method Summary collapse
-
#initialize ⇒ MethodStore
constructor
A new instance of MethodStore.
Constructor Details
#initialize ⇒ MethodStore
7 8 9 10 |
# File 'lib/console_buddy/method_store.rb', line 7 def initialize @augment_helper_methods = ::Hash.new { |hash, key| hash[key] = [] } @console_method = ::Hash.new end |
Instance Attribute Details
#augment_helper_methods ⇒ Object
Returns the value of attribute augment_helper_methods.
5 6 7 |
# File 'lib/console_buddy/method_store.rb', line 5 def augment_helper_methods @augment_helper_methods end |
#console_method ⇒ Object
Returns the value of attribute console_method.
5 6 7 |
# File 'lib/console_buddy/method_store.rb', line 5 def console_method @console_method end |