README.txt in ParseTree-1.4.0 vs README.txt in ParseTree-1.4.1

- old
+ new

@@ -1,6 +1,7 @@ ParseTree + http://rubyforge.org/projects/parsetree/ http://www.zenspider.com/ZSS/Products/ParseTree/ support@zenspider.com ** DESCRIPTION: @@ -34,14 +35,16 @@ ** FEATURES/PROBLEMS: + Uses RubyInline, so it just drops in. + Includes SexpProcessor and CompositeSexpProcessor. + Allows you to write very clean filters. -+ Includes show.rb, which lets you quickly snoop code. -+ Includes abc.rb, which lets you get abc metrics on code. ++ Includes parse_tree_show, which lets you quickly snoop code. + + echo "1+1" | parse_tree_show -f for quick snippet output. ++ Includes parse_tree_abc, which lets you get abc metrics on code. + abc metrics = numbers of assignments, branches, and calls. + whitespace independent metric for method complexity. ++ Includes parse_tree_deps, which shows you basic class level dependencies. + Only works on methods in classes/modules, not arbitrary code. + Does not work on the core classes, as they are not ruby (yet). ** SYNOPSYS: @@ -64,20 +67,23 @@ % ./parse_tree_show myfile.rb or: + % echo "1+1" | ./parse_tree_show -f + +or: + % ./parse_tree_abc myfile.rb ** REQUIREMENTS: + RubyInline 3 or better. ** INSTALL: -+ sudo make install - + renames show.rb to parse_tree_show - + renames abc.rb to parse_tree_abc ++ sudo rake install ++ or: sudo gem install ParseTree ** LICENSE: (The MIT License)