Report abuse


			
class Foo; include Singleton; attr_accessor :name; end
# => nil
Foo.instance.name = :foo
# => :foo
Foo.instance.name
# => :foo