我无法从我的目录加载我的PactHelper
模块。lib
# lib/pact_helper.rb
module PactHelper
def so_something
end
end
和
# app/controllers/registrations_controller.rb
class RegistrationsController < ApplicationController
include PactHelper
def new
...
end
end
返回undefined method 'include' for #<RegistrationsController:0x5287cf8>
有人可以向我解释为什么不包含我的模块吗?