0
0

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 1 year has passed since last update.

#Rails で development など特定環境でだけ使える rake を追加する

Last updated at Posted at 2019-11-23

全体を env? で囲っておけば、そもそもその環境でしか task一覧に出てこないで良さげ
task の 中で raise させたりするより良さそう
ただもっと良い書き方があるのかもしれないが

if Rails.env.development?
  namespace :development do
    namespace :some do
      task run: :environment do
      end
  end
end

Original by Github issue

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?