Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/img_builder.rb

Instance Method Summary collapse

Instance Method Details

#remove_blank_linesObject



2
3
4
# File 'lib/img_builder.rb', line 2

def remove_blank_lines
  strip.gsub(/^\s*$\n/, '')
end

#squishObject

Like RoR’s squish method



7
8
9
# File 'lib/img_builder.rb', line 7

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