mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
199 B
Ruby
11 lines
199 B
Ruby
module OpenFoodNetwork
|
|
module HtmlHelper
|
|
def save_and_open(html)
|
|
require "launchy"
|
|
file = Tempfile.new('html')
|
|
file.write html
|
|
Launchy.open(file.path)
|
|
end
|
|
end
|
|
end
|