Skip to content

Instantly share code, notes, and snippets.

@chadjemmett
Created July 29, 2012 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chadjemmett/3201869 to your computer and use it in GitHub Desktop.
Save chadjemmett/3201869 to your computer and use it in GitHub Desktop.
How to store objects with multiple variables.
class Todo
attr_accessor :item, :done, :time_created
def initialize item_name
#what we need for a new item on the todo list.
#when the item was created.(optional)
@time_created = Time.now
#the string that is displayed that's identified.
@item = item_name
#whether it's done or not
@done = false
end #of initialize method.
end # of todo class.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment