0.0
No commit activity in last 3 years
No release in over 3 years
A tool to determine the the minimum set of specs to run based on dependency analysis
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 2.9.0

Runtime

= 0.9.2
= 1.3.5
 Project Readme

Rail Chaser

Find the minimum set of specs based on dependency analysis.

Install

gem install rail_chaser

Setup

Edit Rakefile:

require 'rail_chaser/task'
RailChaser::Task.new

Edit spec_helper.rb:

require 'rail_chaser'
RailChaser.on

Usage

rake spec # generate spec.db
rake spec:min

Configuration

RailChaser.on do |config|
  config.skip_gem = true # default: true
  config.skip_ruby_core = true # default: true
  config.skip_spec = true # default: true
  # config.db_path defaults to 'spec.db', not available yet
end