4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Capistranoのrails_envはどこで設定されているか

Posted at

Capistranoでオリジナルのタスクを書いていて、ふとrails_envはどこで設定されているのか気になったので調べたメモ。

直接的にはcapistrano/railsのset_rails_env.rakeで設定されている。

Capistrano::DSL.stages.each do |stage|
  after stage, 'deploy:set_rails_env'
end

after stageと書かれているので、productionやstagingがタスクになっているのだけど、そのタスクはどこで設定されているのだろうという疑問も湧いてきたので更に調べる。

stageのタスクについて

各stageのタスクはcapistranoのsetup.rbで設定されている。

stages.each do |stage|
  Rake::Task.define_task(stage) do
    set(:stage, stage.to_sym)

    ...
  end
end

そしてstageのタスクはbundle exec cap production deployなどでcapに渡された最初のタスクとして実行される。

capではRake::ApplicationのサブクラスであるCapistrano::Aplicationをrunしているため、cap以降の引数はそれぞれRakeタスクとして実行される。

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?