GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

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/dutscher/gitnub.git
Fix the README build instructions and change some language to make the 
github integration clearer
Caged (author)
Sat Jun 07 16:24:50 -0700 2008
commit  a0cdb66cb9e5cdd71d8686dbf491240f26736062
tree    b1d548942a7d09b83199aa9202a99364356c4e5f
parent  f74d2c2dade3873a2e0867598943356250bb4b26
...
25
26
27
28
29
30
31
32
...
45
46
47
48
49
 
 
50
51
52
...
95
96
97
98
 
99
100
101
...
25
26
27
 
 
28
29
30
...
43
44
45
 
 
46
47
48
49
50
...
93
94
95
 
96
97
98
99
0
@@ -25,8 +25,6 @@ class NetworkController < OSX::NSObject
0
   end
0
   
0
   def setup_network_visualization_view
0
- puts @github_user
0
- puts @github_repo
0
     github_network_url = NSURL.URLWithString("http://github.com/#{@github_user}/#{@github_repo}/network")
0
     @network_view.setFrameLoadDelegate(self)
0
     if has_github_credentials?
0
@@ -45,8 +43,8 @@ class NetworkController < OSX::NSObject
0
         <body style="padding:30px">
0
           <h2>If this is a Github repository you can set your credentials to view your network</h2>
0
           <pre>
0
- git config github.user YOUR_USER
0
- git config githuser.repo YOUR_REPO
0
+ git config github.user REPO_USER
0
+ git config githuser.repo REPO_NAME
0
           </pre>
0
         </body>
0
         </html>
0
@@ -95,7 +93,7 @@ class NetworkController < OSX::NSObject
0
     )
0
   
0
     header.setAttribute_value('style', style)
0
- header.setInnerHTML(%(Github Visualizer))
0
+ header.setInnerHTML(%(Github Network))
0
     old_header.parentNode.insertBefore_refChild(header, old_header)
0
   end
0
   
...
2
3
4
5
 
6
7
8
...
18
19
20
21
22
23
 
 
 
24
25
26
...
2
3
4
 
5
6
7
8
...
18
19
20
 
 
 
21
22
23
24
25
26
0
@@ -2,7 +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, RubyGems, open4
0
+* Git, RubyCocoa, Leopard, RubyGems, open4
0
 
0
 ### Quick Install
0
 1. Move GitNub.app to /Applications
0
@@ -18,9 +18,9 @@ helper to invoke the application, otherwise you get nothing.
0
 
0
     
0
 ### Building from Source
0
-1. Open project in Xcode - press Build
0
-3. Move the build/Release/GitNub.app and `nub` to the proper locations
0
- specified in the Quick Install directions.
0
+1. Run `git submodule init` & `git submodule update` in the root directory.
0
+2. Run `rake build` or open GitNub.xcodeproj in Xcode - press Build
0
+3. Run `rake install` to move GitNub.app to /Applications and copy nub to /usr/local/bin.
0
    
0
 ### Major Contributors
0
 * Justin Palmer - Maintainer

Comments

    No one has commented yet.