Class: LLT::GerundiveBuilder

Inherits:
DeclinableBuilder show all
Defined in:
lib/llt/form_builder/gerundive_builder.rb

Direct Known Subclasses

IrregularGerundiveBuilder

Constant Summary

Constants inherited from FormBuilder

FormBuilder::VERSION

Instance Attribute Summary

Attributes inherited from DeclinableBuilder

#comparatio, #sexus

Attributes inherited from FormBuilder

#impersonalium

Instance Method Summary collapse

Methods inherited from DeclinableBuilder

#additional_forms, #casus_numerus_sexus_by_index, #compute, #endings_lookup, #er_nominative_possible?, #extended_special_forms, #index_of_ending, #indices, #initialize, #irregulars_with_nominative, #new_attributes, #new_form_through_index, #new_special_form, #o_declension_on_ius?, #pronominal_declension?, #proper_vocative, #regular_forms, #regular_o_declension?, #special_ending, #with_replacements

Methods inherited from FormBuilder

#attributes_by_index, build, #compute, #corrections, #cross_indices, #default_args, #downcase_all_stems, #endings, #endings_attributes, #endings_container, #endings_lookup, #endings_namespace, #endings_path, #extensions_and_other_signs, #form_class, #indices_by_ending, #init_keys, #initialize, #keep_given_value, lookup_class, #lookup_indices, #needs_validation?, #new_form, #prefix, #reverse_lookup, #stays_capitalized, #stem_copy, #valid?, #validations, validations, #value_as_index

Constructor Details

This class inherits a constructor from LLT::DeclinableBuilder

Instance Method Details

#validation_rule(args, validator) ⇒ Object

Allows archaic forms like audiundi



14
15
16
17
18
19
20
21
22
# File 'lib/llt/form_builder/gerundive_builder.rb', line 14

def validation_rule(args, validator)
  if args[:inflection_class] == 4 && validator == :thematic
    if args[validator] == "e" && @options[validator] =~ /^[eu]$/
      keep_given_value(args, validator, :archaic)
    end
  else
    super
  end
end