module Strings::Inflection::Verbs

Public Class Methods

plurals() click to toggle source

A list of plural rules

@return [Array]

@api private

# File lib/strings/inflection/verbs.rb, line 124
def plurals
  @plurals
end
singulars() click to toggle source

A list of singular rules

@return [Array]

@api private

# File lib/strings/inflection/verbs.rb, line 114
def singulars
  @singulars
end
uninflected() click to toggle source

A set of uninflected verbs

@return [Array]

@api private

# File lib/strings/inflection/verbs.rb, line 104
def uninflected
  @uninflected
end

Private Instance Methods

plurals() click to toggle source

A list of plural rules

@return [Array]

@api private

# File lib/strings/inflection/verbs.rb, line 124
def plurals
  @plurals
end
singulars() click to toggle source

A list of singular rules

@return [Array]

@api private

# File lib/strings/inflection/verbs.rb, line 114
def singulars
  @singulars
end
uninflected() click to toggle source

A set of uninflected verbs

@return [Array]

@api private

# File lib/strings/inflection/verbs.rb, line 104
def uninflected
  @uninflected
end