Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/brew/utils/string_utils.rb
Instance Method Summary collapse
Instance Method Details
#snake_to_kebab ⇒ Object
4 5 6 |
# File 'lib/brew/utils/string_utils.rb', line 4 def snake_to_kebab gsub('_', '-') end |
#squish ⇒ Object
8 9 10 |
# File 'lib/brew/utils/string_utils.rb', line 8 def squish strip.gsub(/\s+/, ' ') end |