Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/img_builder.rb
Instance Method Summary collapse
- #remove_blank_lines ⇒ Object
-
#squish ⇒ Object
Like RoR’s squish method.
Instance Method Details
#remove_blank_lines ⇒ Object
2 3 4 |
# File 'lib/img_builder.rb', line 2 def remove_blank_lines strip.gsub(/^\s*$\n/, '') end |
#squish ⇒ Object
Like RoR’s squish method
7 8 9 |
# File 'lib/img_builder.rb', line 7 def squish strip.gsub(/\s+/, ' ') end |