Skip to content

Instantly share code, notes, and snippets.

@aristotelesbr
Created February 10, 2015 03:07
Show Gist options
  • Save aristotelesbr/824af513c7ed34b0e478 to your computer and use it in GitHub Desktop.
Save aristotelesbr/824af513c7ed34b0e478 to your computer and use it in GitHub Desktop.
cap. 7 pg 102 - Compartilhando Comportamentos: Herança, Módulos e Mixins.
class DVD < Midia
def initialize(titulo, valor, categoria)
@titulo = titulo
@valor = valor
@categoria = categoria
end
def to_s
%Q{ Título: #{@titulo}, Valor: #{@valor} }
end
end
class Midia
attr_accessor :valor
attr_reader :titulo
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment