052533db23
A command line tool that creates png screenshots of webpages. With tall or wide pages that would normally require scrolling, it takes screenshots of the whole webpage, not just the area that would be visible in a browser window. Webkit2png makes use of WebKit, the rendering engine used in Safari.
11 lines
213 B
Ruby
11 lines
213 B
Ruby
require 'formula'
|
|
|
|
class Webkit2png <Formula
|
|
head 'git://github.com/paulhammond/webkit2png.git'
|
|
homepage 'http://www.paulhammond.org/webkit2png/'
|
|
md5 ''
|
|
|
|
def install
|
|
bin.install 'webkit2png'
|
|
end
|
|
end
|