public
Description: Ruby bindings for the GTK+ port of WebKit.
Homepage: http://danlucraft.com/blog/tag/#webkit
Clone URL: git://github.com/danlucraft/rbwebkitgtk.git
name age message
file .gitignore Sat Apr 12 01:09:33 -0700 2008 Added WebView#open method [danlucraft]
file COPYING.LIB Sat Apr 12 00:04:03 -0700 2008 Added the GtkLauncher as a sample c app for ref... [danlucraft]
file ChangeLog Sat Apr 12 00:04:03 -0700 2008 Added the GtkLauncher as a sample c app for ref... [danlucraft]
file README Sun Apr 13 13:23:53 -0700 2008 Updated README [danlucraft]
file Rakefile Sun Apr 13 13:22:02 -0700 2008 Added Rakefile. [danlucraft]
file extconf.rb Wed Feb 04 05:29:11 -0800 2009 Updated for new Ubuntu packages [danlucraft]
directory sample/ Wed Sep 17 09:01:43 -0700 2008 Made it work with ubuntu webkit package [danlucraft]
directory src/ Wed Feb 04 05:29:11 -0800 2009 Updated for new Ubuntu packages [danlucraft]
README
RbWebKitGTK

These are usable bindings. There are still some methods missing 
from WebView, but you can use almost the whole API at this point.

To build:

  1. cd /path/to/rbwebkitgtk/
  2. export RG2_DIR=/path/to/ruby-gnome2-sources/; ruby extconf.rb
  3. make
  4. (as root) 
     make install 

To require:
  
  require 'webkit'

To use the WebView Gtk Widget:

  webview = Gtk::WebKit::WebView.new
  webview.open("http://www.example.com/")
   -or-
  webview.load_html_string("<h1>Hi!</h1>")

-------

This page sets out WebKit deps on ubuntu
http://packages.ubuntu.com/source/hardy/webkit

I've developing against nightly build WebKit-r31823 - dan