class String

Public Instance Methods

camelize() click to toggle source
# File lib/awspec/ext/string.rb, line 4
def camelize
  Dry::Inflector.new.camelize(self)
end
demodulize() click to toggle source
# File lib/awspec/ext/string.rb, line 16
def demodulize
  Dry::Inflector.new.demodulize(self)
end
pluralize() click to toggle source
# File lib/awspec/ext/string.rb, line 8
def pluralize
  Dry::Inflector.new.pluralize(self)
end
underscore() click to toggle source
# File lib/awspec/ext/string.rb, line 12
def underscore
  Dry::Inflector.new.underscore(self)
end