class Katsuyou::ConjugationType

Public Class Methods

new(supported: true, **kwargs) click to toggle source
Calls superclass method
# File lib/katsuyou/conjugation_type.rb, line 3
def initialize(supported: true, **kwargs)
  @supported = supported
  super
end

Public Instance Methods

supported?() click to toggle source
# File lib/katsuyou/conjugation_type.rb, line 8
def supported?
  @supported
end