Class: Conjugators::Ometv::PastTwo

Inherits:
Object
  • Object
show all
Defined in:
lib/conjugators/ometv/past_two.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tense) ⇒ PastTwo

Returns a new instance of PastTwo.



4
5
6
# File 'lib/conjugators/ometv/past_two.rb', line 4

def initialize(tense)
  @tense = tense
end

Class Method Details

.person_conjugationsObject



8
9
10
11
12
13
14
15
16
17
# File 'lib/conjugators/ometv/past_two.rb', line 8

def self.person_conjugations
  {
    '1ps' => %w{owivnks},
    '2ps' => %w{owetskvnks oweckvnks oweccvnks owetcvnks },
    '3ps' => %w{owvnks},
    '1pp' => %w{owēyvnks},
    '2pp' => %w{owatskvnks owackvnks},
    '3pp' => %w{owakvnks}
  }
end

Instance Method Details

#conjugate!Object



19
20
21
22
23
24
25
26
27
28
# File 'lib/conjugators/ometv/past_two.rb', line 19

def conjugate!
  {
    '1ps' => conjugate('1ps'),
    '2ps' => conjugate('2ps'),
    '3ps' => conjugate('3ps'),
    '1pp' => conjugate('1pp'),
    '2pp' => conjugate('2pp'),
    '3pp' => conjugate('3pp')
  }
end