public
Fork of mojombo/grit
Description: Grit is a Ruby library for extracting information from a git repository in an object oriented manner.
Homepage: http://grit.rubyforge.org/
Clone URL: git://github.com/dysinger/grit.git
Search Repo:
grit gems are now exclusively available via gems.github.com!
mojombo (author)
Thu Apr 24 17:42:58 -0700 2008
commit  11c3d028d1f66f43d7c3f5d4ae6ff5377119af97
tree    25142dee53e88fa4e4f35ce20b9366e8ff0ee14e
parent  c94f0bdd4b90855669d13ae0faa4af51cde21a56
...
13
14
15
16
 
 
17
18
19
20
21
22
 
23
24
25
26
 
27
28
29
...
36
37
38
 
39
40
41
...
13
14
15
 
16
17
18
19
20
21
22
 
23
24
25
26
 
27
28
29
30
...
37
38
39
40
41
42
43
0
@@ -13,17 +13,18 @@ object oriented manner.
0
 
0
 == INSTALL:
0
 
0
-sudo gem install grit
0
+ $ gem sources -a http://gems.github.com/ (you only need to do this once)
0
+ $ gem install mojombo-grit
0
 
0
 == SOURCE:
0
 
0
 Grit's git repo is available on GitHub, which can be browsed at:
0
 
0
-http://github.com/mojombo/grit
0
+ http://github.com/mojombo/grit
0
 
0
 and cloned from:
0
 
0
-git://github.com/mojombo/grit.git
0
+ git://github.com/mojombo/grit.git
0
 
0
 == USAGE:
0
 
0
@@ -36,6 +37,7 @@ trees, blobs, etc.
0
 The first step is to create a Grit::Repo object to represent your repo. I
0
 include the Grit module so reduce typing.
0
 
0
+ require 'mojombo-grit'
0
   include Grit
0
   repo = Repo.new("/Users/tom/dev/grit")
0
   
...
1
2
 
3
4
5
6
7
8
 
 
 
 
 
9
10
11
12
13
14
15
 
16
17
...
1
 
2
3
 
 
 
 
 
4
5
6
7
8
9
10
11
12
13
14
 
15
16
17
0
@@ -1,16 +1,16 @@
0
 Gem::Specification.new do |s|
0
- s.name = %q{grit}
0
+ s.name = "grit"
0
   s.version = "0.8.0"
0
- s.date = %q{2008-04-24}
0
- s.summary = %q{Object model interface to a git repo}
0
- s.email = %q{tom@rubyisawesome.com}
0
- s.homepage = %q{http://github.com/mojombo/grit}
0
- s.description = %q{Grit is a Ruby library for extracting information from a git repository in and object oriented manner.}
0
+ s.date = "2008-04-24"
0
+ s.summary = "Object model interface to a git repo"
0
+ s.email = "tom@rubyisawesome.com"
0
+ s.homepage = "http://github.com/mojombo/grit"
0
+ s.description = "Grit is a Ruby library for extracting information from a git repository in and object oriented manner."
0
   s.has_rdoc = true
0
   s.authors = ["Tom Preston-Werner"]
0
   s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "grit.gemspec", "lib/grit.rb", "lib/grit/actor.rb", "lib/grit/blob.rb", "lib/grit/commit.rb", "lib/grit/config.rb", "lib/grit/diff.rb", "lib/grit/errors.rb", "lib/grit/git.rb", "lib/grit/head.rb", "lib/grit/lazy.rb", "lib/grit/repo.rb", "lib/grit/tag.rb", "lib/grit/tree.rb", "test/fixtures/blame", "test/fixtures/cat_file_blob", "test/fixtures/cat_file_blob_size", "test/fixtures/diff_2", "test/fixtures/diff_2f", "test/fixtures/diff_f", "test/fixtures/diff_i", "test/fixtures/diff_mode_only", "test/fixtures/diff_new_mode", "test/fixtures/diff_p", "test/fixtures/for_each_ref", "test/fixtures/for_each_ref_tags", "test/fixtures/ls_tree_a", "test/fixtures/ls_tree_b", "test/fixtures/ls_tree_commit", "test/fixtures/rev_list", "test/fixtures/rev_list_count", "test/fixtures/rev_list_single", "test/fixtures/rev_parse", "test/fixtures/show_empty_commit", "test/fixtures/simple_config", "test/helper.rb", "test/profile.rb", "test/suite.rb", "test/test_actor.rb", "test/test_blob.rb", "test/test_commit.rb", "test/test_config.rb", "test/test_diff.rb", "test/test_git.rb", "test/test_head.rb", "test/test_reality.rb", "test/test_repo.rb", "test/test_tag.rb", "test/test_tree.rb", "test/test_real.rb"]
0
   s.test_files = ["test/test_actor.rb", "test/test_blob.rb", "test/test_commit.rb", "test/test_config.rb", "test/test_diff.rb", "test/test_git.rb", "test/test_head.rb", "test/test_real.rb", "test/test_reality.rb", "test/test_repo.rb", "test/test_tag.rb", "test/test_tree.rb"]
0
   s.rdoc_options = ["--main", "README.txt"]
0
   s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
0
- s.add_dependency(%q<mime-types>, ["> 0.0.0"])
0
+ s.add_dependency("mime-types", ["> 0.0.0"])
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.