3

我无法从我的目录加载我的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>

有人可以向我解释为什么不包含我的模块吗?

4

1 回答 1

3

尝试:

require 'pact_helper.rb'

多于:

class RegistrationsController < ApplicationController

在:

注册控制器.rb

于 2013-06-17T00:48:25.927 回答