Class: ConsoleBuddy::MethodStore

Inherits:
Object
  • Object
show all
Defined in:
lib/console_buddy/method_store.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeMethodStore



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_methodsObject

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_methodObject

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