A gem to allow you to package your Rails app into a .tar.gz or a .tar.xz and deploy it easily. This works by creating a new type of 'scm' for Capistrano 3.
Add this line to your application's Gemfile:
gem 'capistrano-rails-artifact'
And then execute:
$ bundle
Or install it yourself as:
$ gem install capistrano-rails-artifact
This gem assumes that you have a tar.gz file in an accessible place. This .tar.gz should contain all the gems vendored into vendor/bundle as well as the compiled assets. An example command to build this archive is:
export RAILS_ENV=production
rm -rf vendor/bundle
bundle install --without development test --deployment
bundle exec rake assets:precompile
echo `git rev-parse HEAD` > REVISION
mkdir -p dist
tar -cvzf dist/release.tar.gz --exclude .git --exclude log --exclude "./vendor/bundle/ruby/2.1.0/cache" --exclude "./vendor/bundle/ruby/2.1.0/doc" --exclude .envrc --exclude dist --exclude tmp --exclude coverage --exclude features --exclude spec --exclude vagrants --exclude Vagrantfile --exclude README.md .
# TODO: put dist/release.tar.gz somewhere that is accessible from your application machines
In your config/deploy.rb
, you just need to set two variables
set :rails_artifact_archive_location, '<URL TO TAR GZ>'
set :scm, :rails_artifact
# optional setting
set :rails_artifact_archive_compression, 'xz' # default is 'gz'
Testing is done by spinning up a vagrant box, deploying to it, and then checking the result. You must have Virtualbox and Vagrant installed, then run:
bundle exec rake
- Fork it ( https://github.com/ctaintor/capistrano-rails-artifact/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request