public this repo is viewable by everyone
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for an early screenshot
Homepage: http://alternateidea.com
Clone URL: git://github.com/matta/gitnub.git
packaged mimetype gem
matta (author)
2 months ago
commit  502e2a1f4855aa7679df037c60317ca2c66221eb
tree    92fa0919f5f079a9ebb8f3d992c2828d2923767b
parent  ed692f03f1f2639ab1206c8ee97c65a62b2f1570
...
28
29
30
 
31
32
33
...
65
66
67
 
68
69
70
...
147
148
149
 
150
151
152
...
266
267
268
 
269
270
271
...
28
29
30
31
32
33
34
...
66
67
68
69
70
71
72
...
149
150
151
152
153
154
155
...
269
270
271
272
273
274
275
0
@@ -28,6 +28,7 @@
0
     4DDCA70A0ACC9A6100E082CE /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
0
     4DDCA70C0ACC9A6100E082CE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
0
     4DDCA70D0ACC9A6100E082CE /* RubyCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E8F5E24E03AEB6EC03A81C6F /* RubyCocoa.framework */; };
0
+    C93489C40D82669F00E04C12 /* mime-types in Resources */ = {isa = PBXBuildFile; fileRef = C93489B10D82669F00E04C12 /* mime-types */; };
0
 /* End PBXBuildFile section */
0
 
0
 /* Begin PBXContainerItemProxy section */
0
@@ -65,6 +66,7 @@
0
     29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
0
     4DDCA7110ACC9A6100E082CE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = Info.plist; sourceTree = "<group>"; };
0
     4DDCA7120ACC9A6100E082CE /* GitNub.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GitNub.app; sourceTree = BUILT_PRODUCTS_DIR; };
0
+    C93489B10D82669F00E04C12 /* mime-types */ = {isa = PBXFileReference; lastKnownFileType = folder; path = "mime-types"; sourceTree = "<group>"; };
0
     E8F5E24E03AEB6EC03A81C6F /* RubyCocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RubyCocoa.framework; path = /Library/Frameworks/RubyCocoa.framework; sourceTree = "<absolute>"; };
0
     E8F5E25803AEB7C803A81C6F /* rb_main.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = rb_main.rb; sourceTree = "<group>"; };
0
 /* End PBXFileReference section */
0
@@ -147,6 +149,7 @@
0
     29B97315FDCFA39411CA2CEA /* Other Sources */ = {
0
       isa = PBXGroup;
0
       children = (
0
+        C93489B10D82669F00E04C12 /* mime-types */,
0
         288854540D7E352C00862D67 /* grit */,
0
         29B97316FDCFA39411CA2CEA /* main.m */,
0
         E8F5E25803AEB7C803A81C6F /* rb_main.rb */,
0
@@ -266,6 +269,7 @@
0
         28D8D8430D7FF9C00039F98A /* added.png in Resources */,
0
         28D8D8440D7FF9C00039F98A /* delete.png in Resources */,
0
         28D8D8490D7FFBC60039F98A /* common.png in Resources */,
0
+        C93489C40D82669F00E04C12 /* mime-types in Resources */,
0
       );
0
       runOnlyForDeploymentPostprocessing = 0;
0
     };
...
7
8
9
10
 
11
12
13
...
7
8
9
 
10
11
12
13
0
@@ -7,7 +7,7 @@ require 'fileutils'
0
 
0
 # third party
0
 require 'rubygems'
0
-require 'mime/types'
0
+# require 'mime/types'
0
 
0
 # internal requires
0
 require 'grit/lazy'
...
7
8
9
 
10
11
12
...
7
8
9
10
11
12
13
0
@@ -7,6 +7,7 @@
0
 #
0
 
0
 require 'osx/cocoa'
0
+require File.dirname(__FILE__) + '/mime-types/lib/mime/types.rb'
0
 
0
 def rb_main_init
0
   path = OSX::NSBundle.mainBundle.resourcePath.fileSystemRepresentation

Comments

    No one has commented yet.