Module: DebugHTML

Defined in:
lib/debug_html.rb

Class Method Summary collapse

Class Method Details

.save(html) ⇒ Object



5
6
7
# File 'lib/debug_html.rb', line 5

def self.save(html)
  save_html(html)
end

.save_and_open(html) ⇒ Object



9
10
11
12
# File 'lib/debug_html.rb', line 9

def self.save_and_open(html)
  path = save_html(html)
  Launchy.open(path)
end