No commit activity in last 3 years
No release in over 3 years
A gem for checking things are working when deploying 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.16
~> 5.0
~> 10.0

Runtime

 Project Readme

Capistrano Checks

This gem provides checks to ensure your Rails application will boot properly after deployment.

If you've ever run into the problem that your application is fine in development and CI, but fails when it hits a server, this Gem protects you by aborting the deployment if the Rails server cannot load.

Installation

This gem must appear in both development and production groups so add one of these to your application's Gemfile:

gem 'capistrano-checks'

or

group :development, :production do
  gem 'capistrano-checks'
end

And then execute:

$ bundle

You then need to add this to your Capfile preferably directly under require "capistrano/bundler"

require "capistrano/checks"

Note that checks run directly after the bundler:install stage.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/thalamusai/capistrano-checks.