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】lib配下にクラスを自作し読み込む方法

Last updated at Posted at 2021-11-15

##環境
Ruby 3.0.2
Rails 6.1.4.1

rakeタスク内のメソッドをクラスに切り出してリファクタリングしたいときに使える。

lib/tasks/XXXXXX.rake
namespace :XXXXXX do
  task hogehoge: :environment do
    hogehoge = Hogehoge.new
  end
end
lib/hogehoge.rb
class Hogehoge
  def hugahuga
    ...
  end
end

##設定方法

config/application.rb
module Futurama
  class Application < Rails::Application
    ...
    config.paths.add 'lib', eager_load: true
  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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?