class String

Public Instance Methods

prepend_each(separator, value) click to toggle source

Separates the string on the given separator and prepends the given value to each and returns a new string from the result.

@param [String] separator @param [String] value

@return [String]

# File lib/berkshelf/core_ext/string.rb, line 9
def prepend_each(separator, value)
  lines(separator).collect { |x| value + x }.join
end