module Strings::Inflection::Extensions

Public Instance Methods

inflect(*args, **options) click to toggle source
# File lib/strings/inflection/extensions.rb, line 7
def inflect(*args, **options)
  Strings::Inflection.inflect(self, *args, **options)
end
join_words(*words, **options) click to toggle source
# File lib/strings/inflection/extensions.rb, line 27
def join_words(*words, **options)
  Strings::Inflection.join_words(self, *words, **options)
end
plural?(**options) click to toggle source
# File lib/strings/inflection/extensions.rb, line 23
def plural?(**options)
  Strings::Inflection.plural?(self, **options)
end
pluralize(**options) click to toggle source
# File lib/strings/inflection/extensions.rb, line 15
def pluralize(**options)
  Strings::Inflection.pluralize(self, **options)
end
singular?(**options) click to toggle source
# File lib/strings/inflection/extensions.rb, line 19
def singular?(**options)
  Strings::Inflection.singular?(self, **options)
end
singularize(**options) click to toggle source
# File lib/strings/inflection/extensions.rb, line 11
def singularize(**options)
  Strings::Inflection.singularize(self, **options)
end