We reached a new record: writing a browser in three rows! After python I decided to test also WebKit bindings for ruby:
[kaltura-widget wid=”jr0a2p7nrk” width=”410″ height=”364″ addpermission=”0″ editpermission=”3″ /]
And these are the three rows:
require 'webkit' Gtk::Window.new().add(wv = Gtk::WebKit::WebView.new).show_all Thread.new do Gtk.main end
As you can see from the video to open a webpage you have to write wv.open(“URL”) to the irb prompt.