Created
October 6, 2011 16:56
-
-
Save devboy/1267934 to your computer and use it in GitHub Desktop.
Don't you just love ruby
This file contains hidden or 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
module Sandbox | |
end | |
class App | |
def initialize | |
app = self | |
Sandbox.class.send(:define_method, :app) do | |
puts app | |
end | |
Sandbox.app | |
end | |
end | |
App.new |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment