Skip to content

Instantly share code, notes, and snippets.

@jah2488
Created September 28, 2012 17:42
Show Gist options
  • Select an option

  • Save jah2488/3801210 to your computer and use it in GitHub Desktop.

Select an option

Save jah2488/3801210 to your computer and use it in GitHub Desktop.
User = Struct.new :username, :password
user = User.new "Josh", "super"
user.instance_variables # => []
user.public_methods(false) # => [:username, :username=, :password, :password=]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment