解決方法 app/config/unicorn/production.rb に下記を追記 before_exec do |server| ENV["BUNDLE_GEMFILE"] = File.join(File.expand_path("../../../../", __FILE__), "current", "Gemfile") end ローカルにて下記コマンドでunicornをSTOPしてSTARTしてあげる。 $ bundle exec cap production unicorn:stop $ bundle exec cap production unicorn:start 原因 …