Class: Sunrise::Models::PositionType
- Inherits:
-
Object
- Object
- Sunrise::Models::PositionType
- Defined in:
- lib/sunrise/models/position_type.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Instance Method Summary collapse
-
#initialize(code) ⇒ PositionType
constructor
A new instance of PositionType.
- #title ⇒ Object
Constructor Details
#initialize(code) ⇒ PositionType
Returns a new instance of PositionType.
5 6 7 |
# File 'lib/sunrise/models/position_type.rb', line 5 def initialize(code) @code = code.to_sym end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
8 9 10 |
# File 'lib/sunrise/models/position_type.rb', line 8 def code @code end |
Instance Method Details
#title ⇒ Object
10 11 12 |
# File 'lib/sunrise/models/position_type.rb', line 10 def title I18n.t(@code, :scope => [:manage, :structure, :position]) end |