-
-
Save anonymous/872912721f4af16e6a2d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Object | |
def define_method(name, &block) | |
singleton = class << self; self; end | |
singleton.send(:define_method, name) { |*args| block.call(*args) } | |
end | |
end | |
i = 1 | |
loop do | |
# ... | |
node.define_method(:index) { i } | |
# ... | |
i += 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment