Class: EacRubyUtils::ModuleAncestorsVariable::Set

Inherits:
Base
  • Object
show all
Defined in:
lib/eac_ruby_utils/module_ancestors_variable/set.rb

Constant Summary collapse

INITIAL_VALUE =
::Set.new

Instance Method Summary collapse

Methods inherited from Base

#ancestors_variable, #merge_operation, #self_variable

Constructor Details

#initialize(the_module, method_name) ⇒ Set

Returns a new instance of Set.



11
12
13
# File 'lib/eac_ruby_utils/module_ancestors_variable/set.rb', line 11

def initialize(the_module, method_name)
  super(the_module, method_name, INITIAL_VALUE)
end