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/benstiglitz/gitnub.git
Caged (author)
Wed Mar 12 19:42:07 -0700 2008
commit  8494bf0414ed77c3208968594780ee359c0548d2
tree    a432028552dcbdb9cc7b662b3c4cd80f7689ddce
parent  91ae25d506fc4ed98f6674e694bd0617f25065ce
gitnub / grit / lib / grit.rb
100644 33 lines (26 sloc) 0.525 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed
 
# core
require 'fileutils'
 
# stdlib
 
# third party
require 'rubygems'
#require 'mime/types'
 
# internal requires
require 'grit/lazy'
require 'grit/errors'
require 'grit/git'
require 'grit/head'
require 'grit/tag'
require 'grit/commit'
require 'grit/tree'
require 'grit/blob'
require 'grit/actor'
require 'grit/diff'
require 'grit/repo'
 
module Grit
  class << self
    attr_accessor :debug
  end
  
  self.debug = false
  
  VERSION = '0.7.0'
end