public
Rubygem
Fork of mojombo/grit
Description: Grit is a Ruby library for extracting information from a git repository in an object oriented manner - this fork tries to intergrate as much pure-ruby functionality as possible
Homepage: http://grit.rubyforge.org/
Clone URL: git://github.com/schacon/grit.git
gemification updates
mojombo (author)
Thu Apr 24 16:17:49 -0700 2008
commit  92f6075f573f625b84883035e00d6d1da108ae73
tree    7a444ee1c62e6f85d709f4991485172998a89f47
parent  a2db1039174aae39e60c182de85a12bf67c34518
...
2
3
4
 
5
6
7
...
2
3
4
5
6
7
8
0
@@ -2,6 +2,7 @@ History.txt
0
 Manifest.txt
0
 README.txt
0
 Rakefile
0
+grit.gemspec
0
 lib/grit.rb
0
 lib/grit/actor.rb
0
 lib/grit/blob.rb
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 grit
0
     by Tom Preston-Werner, Chris Wanstrath
0
- http://grit.rubyforge.org
0
+ http://github.com/mojombo/grit/wikis
0
 
0
 == DESCRIPTION:
0
 
...
3
4
5
6
7
8
9
...
3
4
5
 
6
7
8
0
@@ -3,7 +3,6 @@ require 'hoe'
0
 require './lib/grit.rb'
0
 
0
 Hoe.new('grit', Grit::VERSION) do |p|
0
- p.rubyforge_name = 'grit'
0
   p.author = 'Tom Preston-Werner'
0
   p.email = 'tom@rubyisawesome.com'
0
   p.summary = 'Object model interface to a git repo'
...
4
5
6
7
 
8
9
10
11
12
 
13
14
15
16
17
18
 
19
...
4
5
6
 
7
8
9
10
11
 
12
13
14
15
16
 
 
17
18
0
@@ -4,15 +4,14 @@ Gem::Specification.new do |s|
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://grit.rubyforge.org}
0
+ s.homepage = %q{http://github.com/mojombo/gripj}
0
   s.rubyforge_project = %q{grit}
0
   s.description = %q{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", "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.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(%q<hoe>, [">= 1.4.0"])
0
-end
0
+end
0
\ No newline at end of file

Comments

    No one has commented yet.