Мне нужен доступ к методу, определенному в модуле xhelper файла app / helpers / xhelper.rb. к нему нужно получить доступ в файле x.rb в папке lib.
app / helpers / xhelper.rb файл выглядит так:
module Xhelper
def method_to_be_used
p 'ok'
end
end
lib / x.rb файл выглядит так
require 'xhelper'
class X
include Xhelper
def x
method_to_be_used
end
end
я получаю ниже ошибку: NoMethodError: неопределенный метод `method_to_be_used 'для X: Class