Take the 2008 Git User's Survey and help out! [ 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
Search Repo:
Caged (author)
Tue Mar 11 21:04:43 -0700 2008
commit  181772a37977a4f99e376321f2f338eb844e3390
tree    9e2cc4dffe8badc0602229ad67279adc6d679e73
parent  dcd1673bfedbe598ab98afd8ac2a393c83ff3827
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