LoginSignup
0
0

More than 1 year has passed since last update.

[Rails]concernをrake taskの中で使う

Posted at

結論:これをrake taskに入れればよい

require 'active_support/concern'

実例

concernの所在

app/controllers/concerns/test_concern.rb
module TestConcern
  extend ActiveSupport::Concern
    def test_method(test)
      
    end
  end
end

rake task

lib/tasks/test_task.rake
namespace :task do
  task test_rake_task: :environment do
    require 'active_support/concern'
    include TestConcern
      
    end
  end
end
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