Files
openfoodnetwork/spec/support/html_helper.rb

13 lines
235 B
Ruby

# frozen_string_literal: true
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