class String

Public Instance Methods

camelize() click to toggle source
# File lib/awspec/ext/string.rb, line 2
def camelize
  Dry::Inflector.new.camelize(self)
end
demodulize() click to toggle source
# File lib/awspec/ext/string.rb, line 14
def demodulize
  Dry::Inflector.new.demodulize(self)
end
pluralize() click to toggle source
# File lib/awspec/ext/string.rb, line 6
def pluralize
  Dry::Inflector.new.pluralize(self)
end
underscore() click to toggle source
# File lib/awspec/ext/string.rb, line 10
def underscore
  Dry::Inflector.new.underscore(self)
end