Class: String

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

Instance Method Summary collapse

Instance Method Details

#remove_extra_spacesObject

Remove all empty lines and pre whitespace



11
12
13
# File 'lib/hls_manifest.rb', line 11

def remove_extra_spaces
  self.split("\n").map(&:strip).reject(&:empty?).join("\n")
end