Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created October 28, 2010 18:48
Show Gist options
  • Save eqdw/652046 to your computer and use it in GitHub Desktop.
Save eqdw/652046 to your computer and use it in GitHub Desktop.
In case you miss Java...
module ProperOO
self.instance_variables.each do |i|
class_eval <<CODE
def get_#{i}
i
end
def set_#{i} newVal
@#{i} = newVal
end
CODE
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment