1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Clean up Capfile comments

This commit is contained in:
Matt Brictson 2014-06-03 14:09:39 -07:00
parent 39e8895761
commit 69971d7a52

View file

@ -1,10 +1,10 @@
# Load DSL and Setup Up Stages
# Load DSL and set up stages
require 'capistrano/setup'
# Includes default deployment tasks
# Include default deployment tasks
require 'capistrano/deploy'
# Includes tasks from other gems included in your Gemfile
# Include tasks from other gems included in your Gemfile
#
# For documentation on these, see for example:
#
@ -21,5 +21,5 @@ require 'capistrano/deploy'
# require 'capistrano/rails/assets'
# require 'capistrano/rails/migrations'
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined.
# Load custom tasks from `lib/capistrano/tasks' if you have any defined
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }