Module: Verbs

Defined in:
lib/verbs.rb,
lib/verbs/verb.rb,
lib/verbs/version.rb,
lib/verbs/verblike.rb,
lib/verbs/conjugator.rb,
lib/verbs/improper_construction.rb

Defined Under Namespace

Modules: Conjugator, Verblike Classes: ImproperConstruction, Verb

Constant Summary collapse

CONSONANTS =
%w(b c d f g h j k l m n p q r s t v w x z)
CONSONANT_PATTERN =
"[#{CONSONANTS.join}]"
DOUBLED_CONSONANTS =
%w(b c d f g h j k l m n p q r s t w z)
DOUBLED_CONSONANT_PATTERN =
"[#{DOUBLED_CONSONANTS.join}]"
VOWELS =
%w(a e i o u y)
VOWEL_PATTERN =
"[#{VOWELS.join}]"
VERSION =
"2.1.3"