Skip to content

Instantly share code, notes, and snippets.

@treble37
Forked from steveklabnik/quality.rake
Created May 16, 2014 02:31
Show Gist options
  • Save treble37/094dbc146ae8ccf3f026 to your computer and use it in GitHub Desktop.
Save treble37/094dbc146ae8ccf3f026 to your computer and use it in GitHub Desktop.
require 'flog'
require 'flog_task'
require 'flay'
require 'flay_task'
require 'roodi'
require 'roodi_task'
FlogTask.new :flog, SOME_NUMBER_HERE, %w[app lib]
FlayTask.new :flay, OTHER_NUMBER_HERE, %w[app lib]
RoodiTask.new 'roodi', ['app/**/*.rb', 'lib/**/*.rb']
desc "Runs all code quality metrics"
task :quality => [:flog, :flay, :roodi]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment