lak (owner)

Revisions

gist: 141180 Download_button fork
public
Public Clone URL: git://gist.github.com/141180.git
gisttest.rb
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/ruby
 
class ConstantTest
    class FooTest
        def self.yep
            puts "yep"
        end
    end
    self.const_get("FooTest").yep
end