Skip to content

Instantly share code, notes, and snippets.

View gregoire-bessagnet's full-sized avatar
💭
open for positions

Grégoire Bessagnet gregoire-bessagnet

💭
open for positions
View GitHub Profile
class Task
attr_reader :id, :title
attr_accessor :done
def initialize(args = {})
@id = args[:id]
@title = args[:title]
@description = args[:description]
@done = args[:done] || false
end