前提・実現したいこと
共通のライブラリの処理をモジュールにして
コントローラーで呼び出したいのですが
undefined method 'test' for Hoge:Module
となってしまいます
解決方法をご教示お願いします
発生している問題・エラーメッセージ
lib/hoge.rb
module Hoge def self.test puts 'hello' end end
config/application.rb
config.autoload_paths += %W(#{config.root}/lib)
app/controllers/posts_controller.rb
class PostsController < ApplicationController def index Hoge.test end end