Skip to content

Instantly share code, notes, and snippets.

@x0bandeira
Created August 26, 2010 04:52
Show Gist options
  • Save x0bandeira/550836 to your computer and use it in GitHub Desktop.
Save x0bandeira/550836 to your computer and use it in GitHub Desktop.
class MyClass
attr :name #this will create a getter for this property
attr_accessor :hair_color #this will create a getter and setter for this property
attr_reader :age, :surname, :birthdate #this will create only getters for all these properties
attr_writer :listening, :talking #this will create only setters for all these properties
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment