public
Rubygem
Description: GitViz creates GraphViz .dot formatted graphs from your git commit history
Clone URL: git://github.com/ReinH/gitviz.git
Switching from newgem to Echoes
ReinH (author)
Sun Apr 27 18:58:30 -0700 2008
commit  3ee7ae9099b210d7454e20094838dc6e498c58e2
tree    197f5ec7efdfe395c33a6a2f430a67d14104119a
parent  0e93783cd28909f307a0c53cc3e03f38f0ae2076
  • CHANGELOG
  • History.txt
  • LICENSE
  • License.txt
  • Manifest
  • Manifest.txt
  • PostInstall.txt
  • README
  • README.txt
  • Rakefile
  • bin/gitviz
  • config/hoe.rb
  • config/requirements.rb
  • lib/gitviz.rb
  • lib/gitviz/version.rb
  • script/console
  • script/destroy
  • script/generate
  • script/txt2html
  • setup.rb
  • tasks/deployment.rake
  • tasks/environment.rake
  • tasks/rspec.rake
  • tasks/website.rake
...
1
2
3
4
5
 
 
 
 
 
 
 
...
 
 
 
 
1
2
3
4
5
6
7
8
0
@@ -1,4 +1,7 @@
0
-require 'config/requirements'
0
-require 'config/hoe' # setup Hoe + all gem configuration
0
-
0
-Dir['tasks/**/*.rake'].each { |rake| load rake }
0
\ No newline at end of file
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
...
1
2
3
4
5
6
7
8
...
 
 
1
2
3
 
 
 
0
@@ -1,8 +1,3 @@
0
-$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed
0
-
0
 require 'gitviz/errors'
0
 require 'gitviz/git_commands'
0
 require 'gitviz/digraph'
0
-
0
-module GitViz
0
-end

Comments

    No one has commented yet.