Skip to content

Instantly share code, notes, and snippets.

@reborg
Created March 25, 2009 14:41
Show Gist options
  • Save reborg/85505 to your computer and use it in GitHub Desktop.
Save reborg/85505 to your computer and use it in GitHub Desktop.
require 'hotcocoa'
include HotCocoa
framework 'webkit'
ALL_TAGS_REPORT = File.join(
NSBundle.mainBundle.resourcePath.fileSystemRepresentation,
'resources/all_tags_report.html')
application do |app|
window(:frame => [100, 100, 500, 300], :title => "Reports") do |win|
win << web_view(
:layout => {:expand => [:width, :height]},
:url => NSURL.alloc.initFileURLWithPath(ALL_TAGS_REPORT))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment