Skip to content

Instantly share code, notes, and snippets.

@devboy
Created October 6, 2011 16:56
Show Gist options
  • Save devboy/1267934 to your computer and use it in GitHub Desktop.
Save devboy/1267934 to your computer and use it in GitHub Desktop.
Don't you just love ruby
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