我得到了上述配置的服務器。Bundler + RVM + Passenger + Capistrano部署和缺失的寶石
這是我deploy.rb配方的重要組成部分:
$:.unshift(File.expand_path('./lib', ENV['rvm_path']))
require 'rvm/capistrano'
require 'bundler/capistrano'
set :rvm_ruby_string, 'ruby-1.9.2-p290'
set :rvm_type, :system
set :bundle_flags, "--deployment"
set :default_environment, {
'PATH' => ENV['PATH'],
'RAILS_ENV' => ENV['RAILS_ENV']
}
set :stages, %w(staging production)
require 'capistrano/ext/multistage'
運行cap staging deploy
原樣,導致一個錯誤:
* executing "cd /mnt/data-store/project/releases/shared &&
bundle install --gemfile /mnt/data-store/project/releases/shared/Gemfile
--path /mnt/data-store/project/shared/bundle --deployment --without development test"
** [out :: localhost] The --deployment flag requires a Gemfile.lock.
Please make sure you have checked your Gemfile.lock into version control
before deploying.
... rolling back ...
failed: "env PATH=... RAILS_ENV=staging rvm_path=/usr/local/rvm /usr/local/rvm/bin/rvm-shell 'ruby-1.9.2-p290' -c 'cd /mnt/data-store/project/releases/shared && bundle install --gemfile /mnt/data-store/project/releases/shared/Gemfile --path /mnt/data-store/project/shared/bundle --deployment --without development test'" on localhost
的Gemfile和Gemfile.lock的是在源頭控制。我先在本地運行bundle install
以生成.lock文件。但是,bundler/capistrano指向/ mnt/data-store/project/releases/shared/Gemfile,所以我只是在那裏手動複製這兩個文件。我確信我在這裏做錯了。我想它應該被自動複製。
執行的部署試(1),並沒有對捆綁安裝失敗,它甚至在輸出了
Your bundle is complete! It was installed into /mnt/data-store/project/shared/bundle
。
但是,我的一個帽子任務執行一次耙子。其結果是: *在任何源中找不到bcrypt-ruby-3.0.1 *嘗試運行bundle install
。
與我的冒險出發,我發現,一旦你有.bundle/config中 BUNDLE_PATH: /mnt/data-store/project/shared/bundle
它的工作原理。 我有這個目錄,可能由bundler創建,在/mnt/data-store/releases/shared/
下,所以我手動複製到rails根目錄。
現在,rake/rails c工作。
bundle show twitter
顯示.../shared/bundle/ruby/1.9.1/gems/twitter-1.7.1
。
但是,重新部署使我回到(1),因爲.bundle目錄不在那裏。
具體問題:
- 我是否需要創建/手動複製.bundle /配置?
- 我需要將Gemfile/Gemfile.lock手動複製到共享目錄嗎?如果我添加寶石會發生什麼?我應該持有兩份,還是手動/編程同步它們?
- 我做錯了什麼?
謝謝!
謝謝!我仍然不明白爲什麼'current_release'指向共享路徑而不是實際版本。 – elado