public
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/kballard/gitnub.git
Search Repo:
Fix includes such that the bundled mime-types works.

Tweak the README to reflect that mime-types no longer needs to be 
externally installed
kballard (author)
Sat May 10 11:05:30 -0700 2008
commit  00a2e5763b13f4734306a9fbdfa78068bcaf92d9
tree    7151e34bb37273bdd8d219ae129ddd41d5343df7
parent  f6e3922bf83acfd812968032dfd4946eaea3cb77
...
9
10
11
12
13
14
 
 
 
 
 
15
16
17
...
9
10
11
 
 
 
12
13
14
15
16
17
18
19
0
@@ -9,9 +9,11 @@
0
 require 'rubygems'
0
 require 'pathname'
0
 require 'osx/cocoa'
0
-require 'lib/mime-types/lib/mime/types'
0
-require 'lib/grit/lib/grit'
0
-require 'lib/time_extensions'
0
+$: << "#{File.dirname(__FILE__)}/lib"
0
+$: << "#{File.dirname(__FILE__)}/lib/grit/lib"
0
+$: << "#{File.dirname(__FILE__)}/lib/mime-types/lib"
0
+require 'grit'
0
+require 'time_extensions'
0
 require 'InfoWindowController'
0
 
0
 OSX.ns_import 'CommitSummaryCell'
...
2
3
4
5
6
7
8
 
9
10
11
...
2
3
4
 
 
 
 
5
6
7
8
0
@@ -2,10 +2,7 @@
0
 A RubyCocoa app for getting quick information for a git repo. Similar to GitK.
0
  
0
 ### Requirements
0
-* Git(duh!), RubyCocoa, Leopard
0
-* Gems:
0
- * mime/types
0
- * open4
0
+* Git(duh!), RubyCocoa, Leopard, RubyGems, open4
0
 
0
 ### Quick Install
0
 1. Move GitNub.app to /Applications

Comments

    No one has commented yet.