public
Rubygem
Description: Grit gives you object oriented read/write access to Git repositories via Ruby.
Homepage: http://grit.rubyforge.org/
Clone URL: git://github.com/mojombo/grit.git
prepare for packaging as gem
mojombo (author)
Thu Oct 25 09:23:01 -0700 2007
commit  337539e896b8c85cc043a923c8fbb927f58e6450
tree    16eb2a18985f5f5bb8945d051c4f1abb9b3a96e1
parent  8c7f4e1d8cb66590825701b758160e3721003dde
...
1
 
...
1
2
0
@@ -1 +1,2 @@
0
 coverage
0
+pkg
...
4
5
6
7
8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
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
34
35
0
@@ -4,4 +4,31 @@ README.txt
0
 Rakefile
0
 bin/grit
0
 lib/grit.rb
0
-test/test_grit.rb
0
\ No newline at end of file
0
+lib/grit/actor.rb
0
+lib/grit/blob.rb
0
+lib/grit/commit.rb
0
+lib/grit/errors.rb
0
+lib/grit/git.rb
0
+lib/grit/head.rb
0
+lib/grit/lazy.rb
0
+lib/grit/repo.rb
0
+lib/grit/tree.rb
0
+test/fixtures/blame
0
+test/fixtures/cat_file_blob
0
+test/fixtures/cat_file_blob_size
0
+test/fixtures/for_each_ref
0
+test/fixtures/ls_tree_a
0
+test/fixtures/ls_tree_b
0
+test/fixtures/rev_list
0
+test/fixtures/rev_list_single
0
+test/helper.rb
0
+test/profile.rb
0
+test/suite.rb
0
+test/test_actor.rb
0
+test/test_blob.rb
0
+test/test_commit.rb
0
+test/test_git.rb
0
+test/test_head.rb
0
+test/test_reality.rb
0
+test/test_repo.rb
0
+test/test_tree.rb
...
4
5
6
7
8
9
10
11
 
 
 
 
 
12
13
14
...
4
5
6
 
 
 
 
 
7
8
9
10
11
12
13
14
0
@@ -4,11 +4,11 @@ require './lib/grit.rb'
0
 
0
 Hoe.new('grit', Grit::VERSION) do |p|
0
   p.rubyforge_name = 'grit'
0
-  # p.author = 'FIX'
0
-  # p.email = 'FIX'
0
-  # p.summary = 'FIX'
0
-  # p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
0
-  # p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
0
+  p.author = 'Tom Preston-Werner'
0
+  p.email = 'tom@rubyisawesome.com'
0
+  p.summary = 'Object model interface to a git repo'
0
+  p.description = p.paragraphs_of('README.txt', 2..2).join("\n\n")
0
+  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[2..-1].map { |u| u.strip }
0
   p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
0
 end
0
 
...
1
 
2
3
4
...
22
23
24
25
 
26
27
...
 
1
2
3
4
...
22
23
24
 
25
26
27
0
@@ -1,4 +1,4 @@
0
-$:.unshift File.dirname(__FILE__)     # For use/testing when no gem is installed
0
+$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed
0
 
0
 # core
0
 
0
@@ -22,5 +22,5 @@ module Grit
0
   
0
   self.debug = false
0
   
0
-  VERSION = '1.0.0'
0
+  VERSION = '0.1.0'
0
 end
0
\ No newline at end of file

Comments