Class: Clases::MensajeTiempo
- Defined in:
- lib/imposition/clases.rb
Instance Attribute Summary collapse
-
#tipo ⇒ Object
readonly
Returns the value of attribute tipo.
Attributes inherited from Mensaje
Instance Method Summary collapse
-
#initialize(tipo, tiempo) ⇒ MensajeTiempo
constructor
A new instance of MensajeTiempo.
Methods inherited from Mensaje
Constructor Details
#initialize(tipo, tiempo) ⇒ MensajeTiempo
Returns a new instance of MensajeTiempo.
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/imposition/clases.rb', line 228 def initialize(tipo,tiempo) @tiempo=tiempo @level=1 if tipo==1 then#booklets @id=14#fijo @mensaje=I18n.t(:bookltsblink)#blink blink @mensaje+=I18n.t(:bookltsxplain) elsif tipo==2 then @id=9#fijo @mensaje=I18n.t(:nUpblink)#blink blink @mensaje+=I18n.t(:nUpxplain) end @mensaje+=@tiempo.to_s+" "+I18n.t(:s) super(level,mensaje) end |
Instance Attribute Details
#tipo ⇒ Object (readonly)
Returns the value of attribute tipo.
227 228 229 |
# File 'lib/imposition/clases.rb', line 227 def tipo @tipo end |