public
Rubygem
Description: GitViz creates GraphViz .dot formatted graphs from your git commit history
Clone URL: git://github.com/ReinH/gitviz.git
GitViz v0.1.1 FTW
ReinH (author)
Sun Apr 27 21:13:08 -0700 2008
commit  c37f31b45fffbe05f36fcbb9875d459cf95e6a40
tree    b070a41a80e2fd7abbdeec20430e66bb2f0d9673
parent  c295ae3062820497e1a87cf0adbf2dccc264d21f
...
 
 
1
2
3
...
1
2
3
4
5
0
@@ -1,3 +1,5 @@
0
+v0.1.1 Add gemspec. Say hello to ReinH-gitviz gem.
0
+
0
 v0.1.0 Create GraphViz documents from your git history FTW
0
 
0
 v0.0.1 Basic DOT file generation
...
1
2
3
4
5
6
7
 
 
 
 
 
 
...
1
 
 
 
 
 
 
2
3
4
5
6
7
0
@@ -1,7 +1,7 @@
0
 require 'echoe'
0
-Echoe.new('gitviz')# do |p|
0
-# p.author = "Rein Henrichs"
0
-# p.email = "reinh@reinh.com"
0
-# p.summary = "GitViz generates DOT files from git commit graphs for GraphViz and great justice."
0
-# p.url = "http://github.com/reinh/gitviz"
0
-# end
0
+Echoe.new('gitviz') do |p|
0
+ p.author = "Rein Henrichs"
0
+ p.email = "reinh@reinh.com"
0
+ p.summary = "GitViz generates DOT files from git commit graphs for GraphViz and great justice."
0
+ p.url = "http://github.com/reinh/gitviz"
0
+end
...
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
34
35
36
37
38
 
 
 
 
 
 
...
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
34
35
36
37
38
0
@@ -1,38 +1,38 @@
0
 
0
-# Gem::Specification for Gitviz-0.1.0
0
+# Gem::Specification for Gitviz-0.1.1
0
 # Originally generated by Echoe
0
 
0
 Gem::Specification.new do |s|
0
   s.name = %q{gitviz}
0
- s.version = "0.1.0"
0
+ s.version = "0.1.1"
0
 
0
   s.specification_version = 2 if s.respond_to? :specification_version=
0
 
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
- s.authors = [""]
0
- s.date = %q{2008-04-27}
0
+ s.authors = ["Rein Henrichs"]
0
+ s.date = %q{2008-04-28}
0
   s.default_executable = %q{gitviz}
0
- s.description = %q{}
0
- s.email = %q{}
0
+ s.description = %q{GitViz generates DOT files from git commit graphs for GraphViz and great justice.}
0
+ s.email = %q{reinh@reinh.com}
0
   s.executables = ["gitviz"]
0
   s.extra_rdoc_files = ["bin/gitviz", "CHANGELOG", "lib/gitviz/digraph.rb", "lib/gitviz/errors.rb", "lib/gitviz/git_commands.rb", "lib/gitviz.rb", "LICENSE", "README.markdown"]
0
   s.files = ["bin/gitviz", "CHANGELOG", "lib/gitviz/digraph.rb", "lib/gitviz/errors.rb", "lib/gitviz/git_commands.rb", "lib/gitviz.rb", "LICENSE", "Manifest", "README.markdown", "spec/gitviz_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "gitviz.gemspec"]
0
   s.has_rdoc = true
0
- s.homepage = %q{}
0
+ s.homepage = %q{http://github.com/reinh/gitviz}
0
   s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Gitviz", "--main", "README.markdown"]
0
   s.require_paths = ["lib"]
0
   s.rubyforge_project = %q{gitviz}
0
   s.rubygems_version = %q{1.0.1}
0
- s.summary = %q{}
0
+ s.summary = %q{GitViz generates DOT files from git commit graphs for GraphViz and great justice.}
0
 end
0
 
0
 
0
 # # Original Rakefile source (requires the Echoe gem):
0
 #
0
 # require 'echoe'
0
-# Echoe.new('gitviz')# do |p|
0
-# # p.author = "Rein Henrichs"
0
-# # p.email = "reinh@reinh.com"
0
-# # p.summary = "GitViz generates DOT files from git commit graphs for GraphViz and great justice."
0
-# # p.url = "http://github.com/reinh/gitviz"
0
-# # end
0
+# Echoe.new('gitviz') do |p|
0
+# p.author = "Rein Henrichs"
0
+# p.email = "reinh@reinh.com"
0
+# p.summary = "GitViz generates DOT files from git commit graphs for GraphViz and great justice."
0
+# p.url = "http://github.com/reinh/gitviz"
0
+# end

Comments

    No one has commented yet.