module Katsuyou

Constants

CONJUGATION_TYPES
VERSION

Public Class Methods

conjugatable?(verb, type:) click to toggle source
# File lib/katsuyou.rb, line 14
def self.conjugatable?(verb, type:)
  ChecksConjugability.new.call(verb, type: type)
end
conjugate(verb, type:) click to toggle source
# File lib/katsuyou.rb, line 10
def self.conjugate(verb, type:)
  ConjugatesVerb.new.call(verb, type: type)
end