Class: Mechanize::Page

Inherits:
Object
  • Object
show all
Defined in:
lib/zombie_fans/robot.rb

Instance Method Summary collapse

Instance Method Details

#previewObject



14
15
16
17
18
19
20
21
# File 'lib/zombie_fans/robot.rb', line 14

def preview
  file = Tempfile.new(['mechanize', '.html'])
  file.write(self.content)
  file.close
  system("open #{file.path}")
  sleep 3
  file.unlink
end