Created
February 10, 2015 03:07
-
-
Save aristotelesbr/824af513c7ed34b0e478 to your computer and use it in GitHub Desktop.
cap. 7 pg 102 - Compartilhando Comportamentos: Herança, Módulos e Mixins.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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