No release in over 3 years
Low commit activity in last 3 years
Ceedling provides a set of tools to deploy its guts in a folder or which can be required in a Rakefile. This makes that process more automatic.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.8.7
>= 0.1.0
 Project Readme

Ceedling-Autorake

Autotest for Ceedling projects

Using the Watch gem and YAML configuration compatible with Ceedling's project.yml, this simple code allows you to just code and let Ceedling run your tests in the background.

Installation

gem install ceedling-autorake

Configuration

Add something like this to your project.yml file:

:autorake:
    :paths:
        - tests
        - src
        - mocks

Easy integration

  1. Add these lines to your project's rakefile.rb:

     require "Autorake"
     
     task :auto do
         Autorake.new "project.yml"
     end
    
  2. Now run:

     rake auto
    
  3. Cackle like an evil genius.