Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/brew/utils/string_utils.rb

Instance Method Summary collapse

Instance Method Details

#snake_to_kebabObject



4
5
6
# File 'lib/brew/utils/string_utils.rb', line 4

def snake_to_kebab
  gsub('_', '-')
end

#squishObject



8
9
10
# File 'lib/brew/utils/string_utils.rb', line 8

def squish
  strip.gsub(/\s+/, ' ')
end