Webkit, Ruby and Gtk+
February 8th, 2010
The ruby bindings for Gnome are really nice. I’m amazed at how easy this was.
Sure it’s not Chrome, but not bad for an embedded browser. Oh and check out how simple this is:
require 'webkit'
win = Gtk::Window.new
wv = Gtk::WebKit::WebView.new
win.add(wv)
win.show_all
wv.open('http://www.google.com/')
Gtk.main
Try it out! The bindings are on github.


Recent Comments