module Easy_Set

Public Class Methods

included(child) click to toggle source
# File lib/easy_set.rb, line 42
def self.included(child)
  child.instance_variable_set(:@store, {})
  child.extend(Singleton_Methods)
end