我的Capistrano没有设置RAILS_ENV变量

时间:2014-09-27 12:54:14

标签: ruby-on-rails capistrano capistrano3

运行bundle命令时,我的Capistrano部署未设置RAILS_ENV变量。我不明白为什么。

我的Gemfile是:

source 'https://rubygems.org'

ruby '2.1.3'

gem 'capistrano', '~> 3.2.1'
gem 'capistrano-rails', '~> 1.1.1'

我的deploy.rb:

set :stage, :production
set :rails_env, 'production'

set :bundle_flags, '--deployment'
set :bundle_env_variables, { rails_env: "production" }

namespace :sphinx do
  desc "Index Sphinx"
  task :index do
    on roles(:app) do
      within release_path do
      execute :rake, "rake ts:index"
    end
  end
end

运行时:

➜  ansible-sharetribe git:(master) ✗ bin/cap production sphinx:index --trace
** Invoke production (first_time)
** Execute production
** Invoke load:defaults (first_time)
** Execute load:defaults
** Invoke bundler:map_bins (first_time)
** Execute bundler:map_bins
** Invoke deploy:set_rails_env (first_time)
** Execute deploy:set_rails_env
** Invoke deploy:set_rails_env
** Invoke sphinx:index (first_time)
** Execute sphinx:index
INFO[3ca70ab5] Running bundle exec rake rake ts:index on www.myapplication.com
cap aborted!
SSHKit::Runner::ExecuteError: Exception while executing on host www.myapplication.com: rake exit status: 1
rake stdout: Nothing written
rake stderr: Digest::Digest is deprecated; use Digest
rake aborted!
NameError: uninitialized constant Annotate

如果我写:

execute :rake, "rake ts:index RAILS_ENV=production"

它有效。为什么RAILS_ENV =生产没有自动设定?

2 个答案:

答案 0 :(得分:1)

您可以在任务中使用此语法

execute :rake, "rake ts:index", "RAILS_ENV=#{fetch :rails_env}"

答案 1 :(得分:1)

我有同样的问题。 我运行了rake secret并得到了#34; NameError:uninitialized constant Annotate"错误。 在我设置RAILS_ENV =生产之后,它就像魅力一样。 我不知道为什么RAILS_ENV没有设置但BTW非常感谢。 节省了我很多时间