Method: Formatter::HTML#safe_join

Defined in:
app/formatters/html_formatter.rb

#safe_join(array, sep) ⇒ Object



11
12
13
14
# File 'app/formatters/html_formatter.rb', line 11

def safe_join(array, sep)
  safe_array = array.collect{ |a| safe(a) }
  safe_array.join(sep)
end