https://github.com/capistrano/capistrano
https://github.com/capistrano/capistrano/wiki
https://github.com/capistrano/capistrano/wiki/2.x-from-the-beginning
(1)使用capistrano2,要在Gemfile里指定版本
gem ‘capistrano‘, git: ‘https://github.com/capistrano/capistrano‘, branch: :‘legacy-v2‘ gem ‘capistrano-rbenv‘, git: ‘https://github.com/yyuu/capistrano-rbenv.git‘, branch: :develop
如果使用最新版本的就不需要指定版本了~
(2)capistrano2生成Capfile用的命令是
$ bundle exec capify .
capistrano3生成Capfile用的命令是
$ bundle exec cap install
时间: 2024-10-04 01:35:51