Class: LLT::Constants::Endings::PersonalPronoun

Inherits:
Object
  • Object
show all
Defined in:
lib/llt/constants/endings.rb

Constant Summary collapse

EGO =
["ego", "mei", "mihi", "me", nil, "me"  ]
TU =
["tu", "tui", "tibi", "te", nil, "te" ]
SE =
[nil, "sui", "sibi", "se", nil, "se"] * 2
NOS =

handle nostrum and vestrum in the builder

nils + ["nos", "nostri", "nobis", "nos", nil, "nobis"]
VOS =
nils + ["vos", "vestri", "vobis", "vos", nil, "vobis"]

Class Method Summary collapse

Class Method Details

.get(inflection_class) ⇒ Object



269
270
271
# File 'lib/llt/constants/endings.rb', line 269

def self.get(inflection_class)
  const_get(inflection_class.upcase)
end