Skip to content

Instantly share code, notes, and snippets.

@vishnugopal
Created May 26, 2009 17:00
Show Gist options
  • Save vishnugopal/118168 to your computer and use it in GitHub Desktop.
Save vishnugopal/118168 to your computer and use it in GitHub Desktop.
def import(nothing)
end
class DummyObject < Object
def method_missing(meth)
return self
end
end
java = DummyObject.new
require 'java'
import java.lang.System
puts "Worked!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment