/lib/object.rb
http://github.com/feyeleanor/RubyGoLightly · Ruby · 9 lines · 8 code · 1 blank · 0 comment · 1 complexity · 9645039f13b2ddcb65456d2628e4a69b MD5 · raw file
- class Object
- def respond_to?(message)
- !!method(message)
- end
-
- def ==(other)
- object_id == other.object_id
- end
- end