Files
openfoodnetwork/spec/support/html_helper.rb

11 lines
204 B
Ruby

module OpenFoodNetwork
module HtmlHelper
def html_save_and_open(html)
require "launchy"
file = Tempfile.new('html')
file.write html
Launchy.open(file.path)
end
end
end