[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Parsing Ruby with Ruby

John Wells

2/2/2006 1:14:00 PM

Guys,

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



5 Answers

Gene Tani

2/2/2006 1:47:00 PM

0


John Wells wrote:
> Guys,
>
> 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/covera...

http://rubyforge.org/project...

http://alexpooley.com/articles/2006/01/01/ruby-on-rails-tes...
http://eigenclass.org/hiki.rb?rcov+0.1.0+...
http://asplake.blogspot.com/2006/01/test-coverage-with-rcov-and-rak...

http://blog.zenspider.com/archives/ruby/parsetree/...

Gene Tani

2/2/2006 2:19:00 PM

0


John Wells wrote:
> Guys,
>
> 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

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&d...

also:
http://rubyforge.org/proje...

http://rubyforge.org/projects/ru...

http://www.zenspider.com/ZSS/Products/CocoR/...
http://rubyforge.org/projects/...

John Wells

2/2/2006 3:12:00 PM

0

Gene,

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




Timothy Goddard

2/3/2006 7:11:00 AM

0

Do you mean the number of times a method is references or do you mean
the number of times called while running? The former requires an
additional script while the latter requires using the ruby profiler
that ships with the standard distribution (just add the '-rprofile'
option when calling ruby. It will display metrics when your application
ends).

John Wells

2/4/2006 1:41:00 AM

0

Timothy Goddard wrote:
> Do you mean the number of times a method is references or do you mean
> the number of times called while running? The former requires an
> additional script while the latter requires using the ruby profiler
> that ships with the standard distribution (just add the '-rprofile'
> option when calling ruby. It will display metrics when your application
> ends).

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-....