Class: Persona
- Inherits:
-
Object
- Object
- Persona
- Includes:
- Comparable
- Defined in:
- lib/alu0101042305/persona.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#nombre ⇒ Object
readonly
Returns the value of attribute nombre.
-
#sexo ⇒ Object
readonly
Returns the value of attribute sexo.
Instance Method Summary collapse
- #<=>(other) ⇒ Object
-
#initialize(nombre, sexo) ⇒ Persona
constructor
A new instance of Persona.
- #to_s ⇒ Object
Constructor Details
#initialize(nombre, sexo) ⇒ Persona
7 8 9 |
# File 'lib/alu0101042305/persona.rb', line 7 def initialize(nombre, sexo) @nombre,@sexo = nombre,sexo end |
Instance Attribute Details
#nombre ⇒ Object (readonly)
Returns the value of attribute nombre.
5 6 7 |
# File 'lib/alu0101042305/persona.rb', line 5 def nombre @nombre end |
#sexo ⇒ Object (readonly)
Returns the value of attribute sexo.
5 6 7 |
# File 'lib/alu0101042305/persona.rb', line 5 def sexo @sexo end |
Instance Method Details
#<=>(other) ⇒ Object
11 12 13 14 15 |
# File 'lib/alu0101042305/persona.rb', line 11 def <=> other raise TypeError, "Se esperaba un objeto Persona" unless other.is_a?Persona return 1 if other.is_a?PacienteM return @nombre <=> other.nombre end |
#to_s ⇒ Object
17 18 19 |
# File 'lib/alu0101042305/persona.rb', line 17 def to_s "#{@nombre} es un#{@sexo == 'mujer' ? 'a' : nil} #{@sexo}" end |