我正在使用whois gem,我在开发方面工作得很好。当我在生产中上传它时,我有这样的错误:
Completed 500 Internal Server Error in 4ms
NameError (uninitialized constant Site::Whois):
app/models/site.rb:11:in `get_whois'
app/controllers/whois_controller.rb:11:in `show'
我的get_whois方法是
def get_whois
c = Whois::Client.new
@array = c.query(@site_domain)
end
并且错误是Whois :: Client.new
答案 0 :(得分:0)
当您尝试在Whois
模型中使用Site
库时,看起来{{1}}库未在您的生产环境中正确加载。