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/eventualbuddha/gitnub.git
Search Repo:
Testing out the quartz drawing.  Getting some where
Caged (author)
Sat Apr 12 13:17:46 -0700 2008
commit  05a6b82844fe45353d4a9fe627d12d35cafc6d5f
tree    a8ff6a75153e96f59685a43ee339b6d2517b9e5b
parent  1d06d2cee77d78cc3f34dc8c73a626e73ac1853f
...
40
41
42
43
44
45
46
47
48
49
 
 
50
51
52
...
58
59
60
 
 
 
 
 
 
 
 
61
62
63
64
...
68
69
70
71
72
73
 
 
74
 
 
 
 
 
 
 
 
75
...
40
41
42
 
 
 
 
 
 
 
43
44
45
46
47
...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
...
71
72
73
 
 
 
74
75
76
77
78
79
80
81
82
83
84
85
0
@@ -40,13 +40,8 @@
0
     return true
0
   end
0
   
0
- def awakeFromNib
0
- begin
0
- @repo = Grit::Repo.new(REPOSITORY_LOCATION)
0
- rescue Grit::InvalidGitRepositoryError
0
- return false
0
- end
0
-
0
+ def awakeFromNib
0
+ repo
0
     @window.delegate = self
0
     column = @commits_table.tableColumns[0]
0
     cell = CommitSummaryCell.alloc.init
0
@@ -58,6 +53,14 @@
0
     @branch_field.cell.setBackgroundStyle(NSBackgroundStyleRaised)
0
   end
0
   
0
+ def repo
0
+ begin
0
+ @repo ||= Grit::Repo.new(REPOSITORY_LOCATION)
0
+ rescue Grit::InvalidGitRepositoryError
0
+ return false
0
+ end
0
+ end
0
+
0
   ib_action :show_info_panel
0
   def show_info_panel(sender)
0
     if @info_controller.nil?
0
0
@@ -68,9 +71,16 @@
0
   
0
   ib_action :swap_tab
0
   def swap_tab(segment)
0
- tags = %w(commits network)
0
- tag = segment.cell.tagForSegment(segment.selectedSegment)
0
- @tab_panel.selectTabViewItemWithIdentifier(tags[tag])
0
+ tag = %w(commits network)[segment.cell.tagForSegment(segment.selectedSegment)]
0
+ @tab_panel.selectTabViewItemWithIdentifier(tag)
0
   end
0
+
0
+ # def tabView_didSelectTabViewItem(tab_view, tab_view_item)
0
+ # item = tab_view_item.identifier
0
+ # if item == "network"
0
+ # @controller ||= VisualizationController.alloc.init_with_repo(@repo)
0
+ # tab_view_item.setView(@controller.view)
0
+ # end
0
+ # end
0
 end
...
8
9
10
11
 
 
12
13
14
...
219
220
221
222
 
223
224
225
226
227
228
...
239
240
241
242
 
243
244
245
246
247
248
249
 
250
251
 
252
253
254
255
256
257
 
258
259
260
...
397
398
399
400
 
401
402
403
404
405
406
407
408
409
410
411
412
413
...
405
406
407
408
409
 
 
410
411
 
412
413
414
 
 
415
 
 
 
 
 
 
 
 
 
 
416
417
 
418
419
420
421
 
 
422
423
424
 
425
426
427
428
429
430
 
431
432
433
 
434
435
436
437
438
439
 
440
441
442
443
 
444
445
446
...
879
880
881
882
 
883
884
885
...
932
933
934
 
935
936
937
...
1297
1298
1299
1300
 
1301
1302
1303
...
1305
1306
1307
1308
 
1309
1310
1311
1312
...
1313
1314
1315
1316
 
1317
1318
1319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1320
1321
1322
...
1360
1361
1362
1363
1364
 
 
1365
1366
1367
1368
1369
1370
1371
1372
1373
...
1801
1802
1803
1804
 
1805
1806
1807
1808
 
 
1809
1810
1811
1812
1813
1814
 
1815
1816
1817
 
1818
1819
 
1820
1821
1822
1823
 
1824
1825
1826
1827
1828
 
1829
1830
1831
...
1835
1836
1837
1838
 
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
...
1888
1889
1890
1891
 
1892
1893
1894
 
1895
1896
 
1897
1898
1899
1900
 
1901
1902
 
1903
1904
 
1905
1906
1907
1908
 
1909
1910
1911
 
1912
1913
1914
1915
1916
1917
1918
 
 
1919
 
 
 
 
 
1920
1921
1922
...
2039
2040
2041
 
2042
2043
2044
2045
...
2194
2195
2196
2197
2198
 
 
2199
2200
2201
2202
2203
 
2204
2205
2206
...
2230
2231
2232
2233
 
2234
2235
2236
...
2383
2384
2385
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2386
2387
2388
...
8
9
10
 
11
12
13
14
15
...
220
221
222
 
223
224
225
226
227
228
229
...
240
241
242
 
243
244
245
246
247
248
249
 
250
251
 
252
253
254
255
256
257
 
258
259
260
261
...
398
399
400
 
401
402
403
404
405
406
407
408
409
410
411
412
413
414
...
406
407
408
 
 
409
410
411
 
412
413
 
 
414
415
416
417
418
419
420
421
422
423
424
425
426
427
 
428
429
430
 
 
431
432
433
434
 
435
436
437
438
439
440
 
441
442
443
 
444
445
446
447
448
449
 
450
451
452
453
 
454
455
456
457
...
890
891
892
 
893
894
895
896
...
943
944
945
946
947
948
949
...
1309
1310
1311
 
1312
1313
1314
1315
...
1317
1318
1319
 
1320
1321
1322
1323
1324
...
1325
1326
1327
 
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
...
1388
1389
1390
 
 
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
...
1829
1830
1831
 
1832
1833
1834
 
 
1835
1836
1837
1838
1839
1840
1841
 
1842
1843
1844
 
1845
1846
 
1847
1848
1849
1850
 
1851
1852
1853
1854
1855
 
1856
1857
1858
1859
...
1863
1864
1865
 
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
...
1916
1917
1918
 
1919
1920
1921
 
1922
1923
 
1924
1925
1926
1927
 
1928
1929
1930
1931
1932
 
1933
1934
1935
1936
 
1937
1938
1939
 
1940
1941
1942
1943
1944
1945
 
 
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
...
2073
2074
2075
2076
2077
2078
2079
2080
...
2229
2230
2231
 
 
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
...
2266
2267
2268
 
2269
2270
2271
2272
...
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
0
@@ -8,7 +8,8 @@
0
     <string key="IBDocument.HIToolboxVersion">352.00</string>
0
     <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
0
       <bool key="EncodedWithXMLCoder">YES</bool>
0
-      <integer value="2"/>
0
+      <integer value="344"/>
0
+      <integer value="491"/>
0
     </object>
0
     <object class="NSArray" key="IBDocument.PluginDependencies">
0
       <bool key="EncodedWithXMLCoder">YES</bool>
0
@@ -219,7 +220,7 @@
0
                 <string key="NSContents">Branch:</string>
0
                 <reference key="NSSupport" ref="98627494"/>
0
                 <reference key="NSControlView" ref="869639466"/>
0
-                <object class="NSColor" key="NSBackgroundColor" id="614213217">
0
+                <object class="NSColor" key="NSBackgroundColor" id="227031787">
0
                   <int key="NSColorSpace">6</int>
0
                   <string key="NSCatalogName">System</string>
0
                   <string key="NSColorName">controlColor</string>
0
0
0
0
@@ -239,22 +240,22 @@
0
                 </object>
0
               </object>
0
             </object>
0
-            <object class="NSTabView" id="612505419">
0
+            <object class="NSTabView" id="1049027428">
0
               <reference key="NSNextResponder" ref="831824449"/>
0
               <int key="NSvFlags">4114</int>
0
               <string key="NSFrame">{{0, 44}, {1045, 664}}</string>
0
               <reference key="NSSuperview" ref="831824449"/>
0
               <object class="NSMutableArray" key="NSTabViewItems">
0
                 <bool key="EncodedWithXMLCoder">YES</bool>
0
-                <object class="NSTabViewItem" id="58701569">
0
+                <object class="NSTabViewItem" id="22598373">
0
                   <string key="NSIdentifier">commits</string>
0
-                  <object class="NSView" key="NSView" id="880862063">
0
+                  <object class="NSView" key="NSView" id="339403319">
0
                     <nil key="NSNextResponder"/>
0
                     <int key="NSvFlags">256</int>
0
                     <object class="NSMutableArray" key="NSSubviews">
0
                       <bool key="EncodedWithXMLCoder">YES</bool>
0
                       <object class="NSSplitView" id="476771339">
0
-                        <reference key="NSNextResponder" ref="880862063"/>
0
+                        <reference key="NSNextResponder" ref="339403319"/>
0
                         <int key="NSvFlags">274</int>
0
                         <object class="NSMutableArray" key="NSSubviews">
0
                           <bool key="EncodedWithXMLCoder">YES</bool>
0
@@ -397,7 +398,7 @@
0
                           </object>
0
                         </object>
0
                         <string key="NSFrameSize">{1011, 639}</string>
0
-                        <reference key="NSSuperview" ref="880862063"/>
0
+                        <reference key="NSSuperview" ref="339403319"/>
0
                         <bool key="NSIsVertical">YES</bool>
0
                         <int key="NSDividerStyle">2</int>
0
                       </object>
0
0
0
0
0
0
0
0
0
0
0
@@ -405,42 +406,52 @@
0
                     <string key="NSFrameSize">{1045, 664}</string>
0
                   </object>
0
                   <string key="NSLabel">Commits</string>
0
-                  <reference key="NSColor" ref="614213217"/>
0
-                  <reference key="NSTabView" ref="612505419"/>
0
+                  <reference key="NSColor" ref="227031787"/>
0
+                  <reference key="NSTabView" ref="1049027428"/>
0
                 </object>
0
-                <object class="NSTabViewItem" id="232305301">
0
+                <object class="NSTabViewItem" id="210041055">
0
                   <string key="NSIdentifier">network</string>
0
-                  <object class="NSView" key="NSView" id="553269542">
0
-                    <reference key="NSNextResponder" ref="612505419"/>
0
+                  <object class="NSView" key="NSView" id="856932408">
0
+                    <reference key="NSNextResponder" ref="1049027428"/>
0
                     <int key="NSvFlags">256</int>
0
+                    <object class="NSMutableArray" key="NSSubviews">
0
+                      <bool key="EncodedWithXMLCoder">YES</bool>
0
+                      <object class="NSCustomView" id="48941844">
0
+                        <reference key="NSNextResponder" ref="856932408"/>
0
+                        <int key="NSvFlags">274</int>
0
+                        <string key="NSFrameSize">{990, 639}</string>
0
+                        <reference key="NSSuperview" ref="856932408"/>
0
+                        <string key="NSClassName">VisualizationView</string>
0
+                      </object>
0
+                    </object>
0
                     <string key="NSFrameSize">{1045, 664}</string>
0
-                    <reference key="NSSuperview" ref="612505419"/>
0
+                    <reference key="NSSuperview" ref="1049027428"/>
0
                   </object>
0
                   <string key="NSLabel">Network</string>
0
-                  <reference key="NSColor" ref="614213217"/>
0
-                  <reference key="NSTabView" ref="612505419"/>
0
+                  <reference key="NSColor" ref="227031787"/>
0
+                  <reference key="NSTabView" ref="1049027428"/>
0
                 </object>
0
               </object>
0
-              <reference key="NSSelectedTabViewItem" ref="232305301"/>
0
+              <reference key="NSSelectedTabViewItem" ref="210041055"/>
0
               <reference key="NSFont" ref="98627494"/>
0
               <int key="NSTvFlags">6</int>
0
               <bool key="NSAllowTruncatedLabels">YES</bool>
0
               <object class="NSMutableArray" key="NSSubviews">
0
                 <bool key="EncodedWithXMLCoder">YES</bool>
0
-                <reference ref="553269542"/>
0
+                <reference ref="856932408"/>
0
               </object>
0
             </object>
0
-            <object class="NSSegmentedControl" id="1028843998">
0
+            <object class="NSSegmentedControl" id="637722390">
0
               <reference key="NSNextResponder" ref="831824449"/>
0
               <int key="NSvFlags">292</int>
0
               <string key="NSFrame">{{186, 9}, {71, 25}}</string>
0
               <reference key="NSSuperview" ref="831824449"/>
0
               <bool key="NSEnabled">YES</bool>
0
-              <object class="NSSegmentedCell" key="NSCell" id="751099816">
0
+              <object class="NSSegmentedCell" key="NSCell" id="523062467">
0
                 <int key="NSCellFlags">67239424</int>
0
                 <int key="NSCellFlags2">0</int>
0
                 <reference key="NSSupport" ref="333987"/>
0
-                <reference key="NSControlView" ref="1028843998"/>
0
+                <reference key="NSControlView" ref="637722390"/>
0
                 <object class="NSMutableArray" key="NSSegmentImages">
0
                   <bool key="EncodedWithXMLCoder">YES</bool>
0
                   <object class="NSSegmentItem">
0
@@ -879,7 +890,7 @@
0
         <string key="NSClassName">CommitsController</string>
0
       </object>
0
       <object class="NSCustomView" id="591982567">
0
-        <nil key="NSNextResponder"/>
0
+        <reference key="NSNextResponder"/>
0
         <int key="NSvFlags">274</int>
0
         <object class="NSMutableArray" key="NSSubviews">
0
           <bool key="EncodedWithXMLCoder">YES</bool>
0
@@ -932,6 +943,7 @@
0
           </object>
0
         </object>
0
         <string key="NSFrameSize">{481, 404}</string>
0
+        <reference key="NSSuperview"/>
0
         <string key="NSClassName">NSView</string>
0
       </object>
0
       <object class="NSCustomObject" id="498734212">
0
@@ -1297,7 +1309,7 @@
0
           <object class="IBOutletConnection" key="connection">
0
             <string key="label">extras_segment</string>
0
             <reference key="source" ref="620275248"/>
0
-            <reference key="destination" ref="1028843998"/>
0
+            <reference key="destination" ref="637722390"/>
0
           </object>
0
           <int key="connectionID">498</int>
0
         </object>
0
@@ -1305,7 +1317,7 @@
0
           <object class="IBOutletConnection" key="connection">
0
             <string key="label">tab_panel</string>
0
             <reference key="source" ref="620275248"/>
0
-            <reference key="destination" ref="612505419"/>
0
+            <reference key="destination" ref="1049027428"/>
0
           </object>
0
           <int key="connectionID">500</int>
0
         </object>
0
0
@@ -1313,10 +1325,26 @@
0
           <object class="IBActionConnection" key="connection">
0
             <string key="label">swap_tab:</string>
0
             <reference key="source" ref="620275248"/>
0
-            <reference key="destination" ref="1028843998"/>
0
+            <reference key="destination" ref="637722390"/>
0
           </object>
0
           <int key="connectionID">503</int>
0
         </object>
0
+        <object class="IBConnectionRecord">
0
+          <object class="IBOutletConnection" key="connection">
0
+            <string key="label">delegate</string>
0
+            <reference key="source" ref="1049027428"/>
0
+            <reference key="destination" ref="620275248"/>
0
+          </object>
0
+          <int key="connectionID">504</int>
0
+        </object>
0
+        <object class="IBConnectionRecord">
0
+          <object class="IBOutletConnection" key="connection">
0
+            <string key="label">application_controller</string>
0
+            <reference key="source" ref="48941844"/>
0
+            <reference key="destination" ref="620275248"/>
0
+          </object>
0
+          <int key="connectionID">506</int>
0
+        </object>
0
       </object>
0
       <object class="IBMutableOrderedSet" key="objectRecords">
0
         <object class="NSArray" key="orderedObjects">
0
@@ -1360,8 +1388,8 @@
0
               <reference ref="60591724"/>
0
               <reference ref="1072506144"/>
0
               <reference ref="869639466"/>
0
-              <reference ref="612505419"/>
0
-              <reference ref="1028843998"/>
0
+              <reference ref="1049027428"/>
0
+              <reference ref="637722390"/>
0
             </object>
0
             <reference key="parent" ref="469667931"/>
0
           </object>
0
0
0
0
0
0
0
@@ -1801,31 +1829,31 @@
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">485</int>
0
-            <reference key="object" ref="612505419"/>
0
+            <reference key="object" ref="1049027428"/>
0
             <object class="NSMutableArray" key="children">
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
-              <reference ref="58701569"/>
0
-              <reference ref="232305301"/>
0
+              <reference ref="22598373"/>
0
+              <reference ref="210041055"/>
0
             </object>
0
             <reference key="parent" ref="831824449"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">486</int>
0
-            <reference key="object" ref="58701569"/>
0
+            <reference key="object" ref="22598373"/>
0
             <object class="NSMutableArray" key="children">
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
-              <reference ref="880862063"/>
0
+              <reference ref="339403319"/>
0
             </object>
0
-            <reference key="parent" ref="612505419"/>
0
+            <reference key="parent" ref="1049027428"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">487</int>
0
-            <reference key="object" ref="880862063"/>
0
+            <reference key="object" ref="339403319"/>
0
             <object class="NSMutableArray" key="children">
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
               <reference ref="476771339"/>
0
             </object>
0
-            <reference key="parent" ref="58701569"/>
0
+            <reference key="parent" ref="22598373"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">343</int>
0
@@ -1835,7 +1863,7 @@
0
               <reference ref="1052727212"/>
0
               <reference ref="573867155"/>
0
             </object>
0
-            <reference key="parent" ref="880862063"/>
0
+            <reference key="parent" ref="339403319"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">255</int>
0
0
0
0
0
0
0
0
0
0
@@ -1888,35 +1916,41 @@
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">490</int>
0
-            <reference key="object" ref="232305301"/>
0
+            <reference key="object" ref="210041055"/>
0
             <object class="NSMutableArray" key="children">
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
-              <reference ref="553269542"/>
0
+              <reference ref="856932408"/>
0
             </object>
0
-            <reference key="parent" ref="612505419"/>
0
+            <reference key="parent" ref="1049027428"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">491</int>
0
-            <reference key="object" ref="553269542"/>
0
+            <reference key="object" ref="856932408"/>
0
             <object class="NSMutableArray" key="children">
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
+              <reference ref="48941844"/>
0
             </object>
0
-            <reference key="parent" ref="232305301"/>
0
+            <reference key="parent" ref="210041055"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">496</int>
0
-            <reference key="object" ref="1028843998"/>
0
+            <reference key="object" ref="637722390"/>
0
             <object class="NSMutableArray" key="children">
0
               <bool key="EncodedWithXMLCoder">YES</bool>
0
-              <reference ref="751099816"/>
0
+              <reference ref="523062467"/>
0
             </object>
0
             <reference key="parent" ref="831824449"/>
0
           </object>
0
           <object class="IBObjectRecord">
0
             <int key="objectID">497</int>
0
-            <reference key="object" ref="751099816"/>
0
-            <reference key="parent" ref="1028843998"/>
0
+            <reference key="object" ref="523062467"/>
0
+            <reference key="parent" ref="637722390"/>
0
           </object>
0
+          <object class="IBObjectRecord">
0
+            <int key="objectID">505</int>
0
+            <reference key="object" ref="48941844"/>
0
+            <reference key="parent" ref="856932408"/>
0
+          </object>
0
         </object>
0
       </object>
0
       <object class="NSMutableDictionary" key="flattenedProperties">
0
@@ -2039,6 +2073,7 @@
0
           <string>485.IBAttributePlaceholdersKey</string>
0
           <string>496.IBPluginDependency</string>
0
           <string>497.IBPluginDependency</string>
0
+          <string>505.IBPluginDependency</string>
0
           <string>56.IBPluginDependency</string>
0
           <string>56.ImportedFromIB2</string>
0
           <string>57.IBEditorWindowLastContentRect</string>
0
0
@@ -2194,13 +2229,14 @@
0
             <string key="NS.key.0">InitialTabViewItem</string>
0
             <object class="IBInitialTabViewItemAttribute" key="NS.object.0">
0
               <string key="name">InitialTabViewItem</string>
0
-              <reference key="object" ref="612505419"/>
0
-              <reference key="initialTabViewItem" ref="58701569"/>
0
+              <reference key="object" ref="1049027428"/>
0
+              <reference key="initialTabViewItem" ref="22598373"/>
0
             </object>
0
           </object>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
+          <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
           <reference ref="9"/>
0
           <string>{{488, 641}, {218, 193}}</string>
0
           <string>com.apple.InterfaceBuilder.CocoaPlugin</string>
0
@@ -2230,7 +2266,7 @@
0
         </object>
0
       </object>
0
       <nil key="sourceID"/>
0
-      <int key="maxID">503</int>
0
+      <int key="maxID">506</int>
0
     </object>
0
     <object class="IBClassDescriber" key="IBDocument.Classes">
0
       <object class="NSMutableArray" key="referencedPartialClassDescriptions">
0
@@ -2383,6 +2419,25 @@
0
         <object class="IBPartialClassDescription">
0
           <string key="className">TexturedWindow</string>
0
           <string key="superclassName">NSWindow</string>
0
+          <object class="IBClassDescriptionSource" key="sourceIdentifier">
0
+            <string key="majorKey">IBUserSource</string>
0
+            <string key="minorKey"/>
0
+          </object>
0
+        </object>
0
+        <object class="IBPartialClassDescription">
0
+          <string key="className">VisualizationView</string>
0
+          <string key="superclassName">NSView</string>
0
+          <object class="IBClassDescriptionSource" key="sourceIdentifier">
0
+            <string key="majorKey">IBProjectSource</string>
0
+            <string key="minorKey">VisualizationView.rb</string>
0
+          </object>
0
+        </object>
0
+        <object class="IBPartialClassDescription">
0
+          <string key="className">VisualizationView</string>
0
+          <object class="NSMutableDictionary" key="outlets">
0
+            <string key="NS.key.0">application_controller</string>
0
+            <string key="NS.object.0">id</string>
0
+          </object>
0
           <object class="IBClassDescriptionSource" key="sourceIdentifier">
0
             <string key="majorKey">IBUserSource</string>
0
             <string key="minorKey"/>
...
21
22
23
 
24
25
26
...
69
70
71
 
72
73
74
...
163
164
165
 
166
167
168
...
277
278
279
 
280
281
282
...
21
22
23
24
25
26
27
...
70
71
72
73
74
75
76
...
165
166
167
168
169
170
171
...
280
281
282
283
284
285
286
0
@@ -21,6 +21,7 @@
0
     285BB54A0D849EA60027980C /* InfoWindowController.rb in Resources */ = {isa = PBXBuildFile; fileRef = 285BB5470D849EA60027980C /* InfoWindowController.rb */; };
0
     286F109E0D7A49380055A0D1 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 286F109D0D7A49380055A0D1 /* WebKit.framework */; };
0
     28851B3E0DB0571A00FA9C7D /* network.png in Resources */ = {isa = PBXBuildFile; fileRef = 28851B3D0DB0571A00FA9C7D /* network.png */; };
0
+    28851B970DB147AA00FA9C7D /* VisualizationView.rb in Resources */ = {isa = PBXBuildFile; fileRef = 28851B960DB147AA00FA9C7D /* VisualizationView.rb */; };
0
     288853050D7CE2E500862D67 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 288853040D7CE2E500862D67 /* LICENSE */; };
0
     2888530D0D7CEA5200862D67 /* gitnub-icon.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2888530C0D7CEA5200862D67 /* gitnub-icon.icns */; };
0
     288853C90D7E06A600862D67 /* commit.html in Resources */ = {isa = PBXBuildFile; fileRef = 288853C80D7E06A600862D67 /* commit.html */; };
0
@@ -69,6 +70,7 @@
0
     285BB5470D849EA60027980C /* InfoWindowController.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = InfoWindowController.rb; sourceTree = "<group>"; };
0
     286F109D0D7A49380055A0D1 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = /System/Library/Frameworks/WebKit.framework; sourceTree = "<absolute>"; };
0
     28851B3D0DB0571A00FA9C7D /* network.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = network.png; sourceTree = "<group>"; };
0
+    28851B960DB147AA00FA9C7D /* VisualizationView.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = VisualizationView.rb; sourceTree = "<group>"; };
0
     288853040D7CE2E500862D67 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
0
     2888530C0D7CEA5200862D67 /* gitnub-icon.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = "gitnub-icon.icns"; sourceTree = "<group>"; };
0
     288853C80D7E06A600862D67 /* commit.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = commit.html; sourceTree = "<group>"; };
0
@@ -163,6 +165,7 @@
0
     29B97315FDCFA39411CA2CEA /* Other Sources */ = {
0
       isa = PBXGroup;
0
       children = (
0
+        28851B960DB147AA00FA9C7D /* VisualizationView.rb */,
0
         283254650D8B792500D99366 /* lib */,