I'd like to write a code analysis tool that could read Ruby or Rails
projects (so both standard .rb files and also erb files) and do some
simple code analysis and metrics, like what methods are called (and how
many times), etc, etc.
What libraries or tools are out there that might help one accomplish this?
Thanks!
John
http://gems.rubyforge.org/gems/coverage-0.2.gem
http://rubyforge.org/projects/zentest/
http://alexpooley.com/articles/2006/01/01/ruby-on-rails-test-coverage
http://eigenclass.org/hiki.rb?rcov+0.1.0+prerelease
http://asplake.blogspot.com/2006/01/test-coverage-with-rcov-and-rake-962.html
http://blog.zenspider.com/archives/ruby/parsetree/index.html
Actually, I think you're looking for libs that expose language
services, so:
(best place to look)
http://rubyforge.org/softwaremap/trove_list.php?form_cat=45&discrim=306
also:
http://rubyforge.org/projects/input/
http://rubyforge.org/projects/rubygrammar/
http://www.zenspider.com/ZSS/Products/CocoR/index.html
http://rubyforge.org/projects/coco-ruby/
Thanks for the links. Perhaps I should describe what I'm trying to do a
bit better.
I'd like to write a program that could descend through a directory of Ruby
programs and generate summaries of what methods are called where. So,
optimal output for what I'd like to do is the file name parsed, the
methods found that are called within the file, and the classes those
methods are derived from.
So, I could point this program at a directory containing a Rails program
and find out, for example, how many times ActionController::Base#render
was called, and from what files.
Perhaps it's a bit more complicated that I'd hoped.
Thanks!
John
ParseTree is probably the best tool for this job, it returns the AST
for ruby methods as a tree of arrays and includes a class for
processing and rewriting the AST called SexpProcessor. It comes with
an ABC metrics tool (assignments, branches, calls) and is the
backbone of the ruby2c project.
http://rubyforge.org/projects/parsetree/
--
Eric Hodel - drb...@segment7.net - http://segment7.net
This implementation is HODEL-HASH-9600 compliant
The number of time a method is referenced in the code, not called while
running. My goal was to take every Rails OSS project I know of that has
a source repository, run the parser to determine method call counts,
sort and rank.
Why? The one thing I'm missing in Rails is idiomatic ways of doing
things, even after reading the PragProg book. The framework is big, and
some things just haven't "stuck" yet. Thought this would be an
interesting perspective of the projects currently out there.
Thanks!
John
--
Posted via http://www.ruby-forum.com/.