No commit activity in last 3 years
No release in over 3 years
Deploy config files via Capistrano.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.14
~> 10.0

Runtime

 Project Readme

Capistrano::ConfigFilesDeploy

Deploy config files from other git repository

Installation

Add this line to your application's Gemfile:

gem 'capistrano-config-files-deploy'

And then execute:

$ bundle

Or install it yourself as:

$ gem install capistrano-config-files-deploy

Usage

Add require to Capfile

require "capistrano/config_files_deploy"

Setting config/deploy.rb

set :config_files_git_url, 'git@github.com:username/path-to-private-repository'
set :config_files_revision, 'v1.2.0'
set :config_files, { 'config/env.production' => '.env.production' }

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/fukajun/capistrano-config-files-deploy.