pjb3 (owner)

Revisions

gist: 129368 Download_button fork
public
Public Clone URL: git://gist.github.com/129368.git
Embed All Files: show embed
method_names.rb #
1
2
3
4
5
6
7
8
9
class FooBar
  define_method("[GET] /") do
    "Apparently Ruby methods can have spaces and other weird characters in their name"
  end
end
 
puts FooBar.new.send("[GET] /")
puts FooBar.instance_methods(false).inspect