No commit activity in last 3 years
No release in over 3 years
Generate config files for continious integration.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 2.11

Runtime

>= 0
 Project Readme

CI Config Generator

github.com/codevise/ci_config_generator

Generate config files for continuous integration from templates inside the repository.

Usage

Require generator tasks inside your Rakefile:

# Rakefile
require 'ci_config_generator/tasks'

Given config/database.yml is an ignored file, commit a config/database.yml.ci file and invoke

$ rake ci:config:generate

in continuous integration. The task generates a config/database.yml and interpolates environment variables:

# config/database.yml.ci
test:
  db: "%{DB_NAME}"

$ rake ci:config:generate DB_NAME=test_db

# config/databse.yml
test:
  db: "test_db"

The task fails if files would be overriden. So make sure to clean your repository on each ci run.

License

Please fork and improve.

Copyright (c) 2013 Codevise Solutions Ltd. This software is licensed under the MIT License.