Customizing CruiseControl build for RSpec

Published on

Yesterday I posted about CruiseControl for Rails projects. It was working fine with all my rails projects using traditional test cases, But today I faced a problem with a project using RSpec. Actually, By default CruiseControl follows the following step to build: rake db:test:purge rake db:migrate rake test This default was not working with my … Continue reading Customizing CruiseControl build for RSpec

Bash script for creating new rails project and initial SVN import (with ignoring/removing log/other files)

Published on

Many times we need to create a new rails project and import it to SVN repository. Each time we have to repeat same commands for creating new rails project, Initial import to SVN, Ignoring *.log files, move database.yml to database.example, ignoring tmp/sessions etc.. etc.. So I have written a bash script that do all this … Continue reading Bash script for creating new rails project and initial SVN import (with ignoring/removing log/other files)