Design Patterns Ruby

class Singleton
end
s = Singleton.new
def s.handle
  puts "I'm a singleton method!"
end
s.handle # => I'm a singleton method!