Coder Social home page Coder Social logo

tinomen / metric_fu Goto Github PK

View Code? Open in Web Editor NEW

This project forked from nielsm/metric_fu

2.0 3.0 0.0 435 KB

A fist full of code metrics. Adds support for Rails 2.1 and bug fix for methodless classes.

Home Page: http://metric-fu.rubyforge.org/

License: MIT License

Ruby 100.00%

metric_fu's Introduction

Version 0.8.1
http://github.com/tinomen/metric_fu

Metric_fu began its life as a plugin for Rails that generated code metrics reports.  As of version 0.7.0, metric_fu is a gem owing to the excellent work done by Sean Soper.  

Metric_fu is a set of rake tasks that make it easy to generate metrics reports.  It uses Saikuro, Flog, Rcov, and Rails' built-in stats task to create a series of reports.  It's designed to integrate easily with CruiseControl.rb by placing files in the Custom Build Artifacts folder.

****Installation****
sudo gem install tinomen-metric_fu -s http://gems.github.com

Then in your Rakefile:
require 'metric_fu'

If you like to vendor gems, you can unpack metric_fu into vendor/gems and require it like so:
require 'vendor/gems/nielsm-metric_fu-0.8.1/lib/metric_fu'

then you don't have to install it on every box you run it on.

Important note:
You must have Rcov and Flog installed to get coverage and flog reports.  Metric_fu requires both of these gems so they will be installed when you install the metric_fu gem.


****Usage****

Out of the box metrics provides these tasks:
rake metrics:all                  
rake metrics:all_with_migrate     # Useful for continuous integration
rake metrics:churn                # Which files change the most
rake metrics:coverage             # Generate and open coverage report
rake metrics:coverage:clean       # Delete aggregate coverage data.
rake metrics:coverage:clobber_do  # Remove rcov products for do
rake metrics:coverage:do          # RCov task to generate report
rake metrics:flog:all             # Generate and open flog report
rake metrics:flog:clean           # Delete aggregate flog data.
rake metrics:flog:controllers     # Flog code in app/controllers
rake metrics:flog:custom          # Generate a flog report from specified directories
rake metrics:flog:helpers         # Flog code in app/helpers
rake metrics:flog:lib             # Flog code in lib
rake metrics:flog:models          # Flog code in app/models
rake metrics:saikuro              # A cyclomatic complexity report using Saikuro
rake metrics:stats                # A stats report

See below for more detail on the individual tasks.  It's recommended to use CruiseControl.rb to set up a metrics build.  See the CruiseControl.rb online docs for more info on how to set up cc.rb and, once you've got that figured out, change the cruise_config.rb file inside your project to have these lines:

project.rake_task = 'metrics:all_with_migrate'
project.scheduler.polling_interval = 24.hours

Which will check for updates every 24 hours and run all the metrics rake tasks (migrating your test db first).  The output will be visible from an individual build's detail page.


****Notes on metrics:coverage****

When creating a coverage report, metric_fu runs all the tests in the test folder and specs in spec folder using Rcov.


****Notes on metrics:saikuro****

Saikuro is bundled with metric_fu so you don't have to install it.  Look at the SAIKURO_README (or the internet) for more documentation on Saikuro.  If you wish to change the options Saikuro is run with, then set this constant in your Rakefile:
                  
MetricFu::SAIKURO_OPTIONS = { "--warn_cyclo" => "3", "--error_cyclo" => "4" }

MetricFu::SAIKURO_OPTIONS is a hash that gets merged with the default options hash.  The above example will set the warn_cyclo to 3 and the error_cyclo to 4 (which is way too low -- it's just an example) instructing Saikuro to flag methods with a higher cyclomatic complexity in it's report.

If you want to have Saikuro look at multiple folders you can put something like this in your rakefile:
MetricFu::SAIKURO_OPTIONS = {"--input_directory" => '"cms/app | cms/lib"'}


****Notes on metrics:flog****

Flog is another way of measuring complexity (or tortured code as the Flog authors like to put it).  You should check out the awesome, and a little scary, Flog website for more info.

'rake metrics:flog:custom' allows you to specify a custom set of directories to Flog (in your rakefile) like so:

MetricFu::DIRECTORIES_TO_FLOG = ['cms/app', 'cms/lib']


****Notes on metrics:stats****

This is just 'rake stats' for Rails put into a file.  On my projects I like to be able to look at CruiseControl and get stats about the app at different points in time.


****Notes on metrics:churn****

Files that change a lot in your project may be bad a sign.  This task uses "svn log" to identify those files and put them in a report.  The default is to start counting changes from the beginning of your project, which might be too far back so you can change like so:

MetricFu::CHURN_OPTIONS = { :start_date => lambda{3.months.ago} }

The Proc is there because '3.months.ago' only works when after the Rails Environment is loaded (and Rails extends Fixnum) which I didn't want to do every time you run a rake task.

You can also change the minimum churn count like so:

MetricFu::CHURN_OPTIONS = { :minimum_churn_count => 3 }

If you use git, then tell churn about it:

MetricFu::CHURN_OPTIONS = {:scm => :git}


****Thanks****

I'd like to thank the authors of Saikuro, Flog, Rcov, CruiseControl.rb, and Rails for creating such excellent open source products.  Also Sean Soper, Michael Schubert, Kurtis Seebaldt, Toby Tripp, Paul Gross, and Chirdeep Shetty for their help and advice.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.