Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created August 4, 2009 18:39
Show Gist options
  • Select an option

  • Save jpoz/161428 to your computer and use it in GitHub Desktop.

Select an option

Save jpoz/161428 to your computer and use it in GitHub Desktop.
#!/usr/local/bin/macruby
require 'hotcocoa'
framework 'webkit'
include HotCocoa
application :name => "Test" do |app|
app.delegate = self
window :frame => [100, 100, 500, 500], :title => "Test" do |win|
@web_view = web_view(:layout => {:expand => [:width, :height]})
win << @web_view
@web_view.url='http://google.com/'
win.will_close { exit }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment