Skip to content

Commit

Permalink
Update Capistrano lock
Browse files Browse the repository at this point in the history
  • Loading branch information
ignisf committed Oct 10, 2017
1 parent e56d456 commit 6377a79
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion Capfile
Expand Up @@ -4,6 +4,17 @@ require 'capistrano/setup'
# Include default deployment tasks
require 'capistrano/deploy'

# Load the SCM plugin appropriate to your project:
#
# require "capistrano/scm/hg"
# install_plugin Capistrano::SCM::Hg
# or
# require "capistrano/scm/svn"
# install_plugin Capistrano::SCM::Svn
# or
require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git

# Include tasks from other gems included in your Gemfile
#
# For documentation on these, see for example:
Expand All @@ -16,12 +27,15 @@ require 'capistrano/deploy'
# https://github.com/capistrano/passenger
#
# require 'capistrano/rvm'
# require 'capistrano/rbenv'
require 'capistrano/rbenv'
# require 'capistrano/chruby'
require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
require 'capistrano/puma'
install_plugin Capistrano::Puma # Default puma tasks
install_plugin Capistrano::Puma::Workers # if you want to control the workers (in cluster mode)
install_plugin Capistrano::Puma::Nginx # if you want to upload a nginx site template
# require 'capistrano/passenger'

# Load custom tasks from `lib/capistrano/tasks' if you have any defined
Expand Down
2 changes: 1 addition & 1 deletion config/deploy.rb
@@ -1,5 +1,5 @@
# config valid only for current version of Capistrano
lock '3.8.0'
lock '3.9.1'

set :application, 'fauna'
set :repo_url, 'https://github.com/initLab/fauna.git'
Expand Down

0 comments on commit 6377a79

Please sign in to comment.