kballard / ruby_diff forked from adamsanderson/ruby_diff
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sun Jun 08 19:57:07 -0700 2008 | |
| |
History.txt | Mon Jun 09 00:14:22 -0700 2008 | |
| |
Manifest.txt | Thu Jul 10 17:37:34 -0700 2008 | |
| |
README.txt | ||
| |
Rakefile | ||
| |
bin/ | Wed Jun 11 00:14:32 -0700 2008 | |
| |
lib/ | ||
| |
ruby_diff.gemspec | ||
| |
test/ |
README.txt
= RubyDiff RubyDiff does higher level comparisons of ruby code. When looking at large sets of changes between versions of files, it is important to get an idea of what classes, modules, and methods change. RubyDiff aims to reveal substantive changes to code, and let you ignore trivial changes like whitespace being added to a document. Code and Releases: http://rubyforge.org/projects/rubydiff Browse or Branch: http://github.com/adamsanderson/ruby_diff/tree/master RDoc for internals (a bit sparse at the moment) http://rubydiff.rubyforge.org/ == Requirements RubyDiff depends on ParseTree, the easiest way to get it is via ruby gems: gem install ParseTree == Caveats This is just the beginnings of an experiment, so all that is captured are changes to instance methods. The API is likely to change drastically. == Usage This is likely to change a bunch, but for the moment: ruby_diff old_file new_file For git repositories, etc. ruby_diff --git HEAD --git-wd Compare three different release tags. ruby_diff --git v0.1 --git v0.2 --git v0.3 For subversion repositories ruby_diff --svn http://project.svnserver.org/lib --svn BASE:lib See help for more information. == Contact Feel free to get in touch with me: netghost@gmail.com

