关于Mongoid的pdf-reader gem

时间:2012-04-01 08:57:53

标签: ruby-on-rails pdf-reader

我正在尝试使用pdf-reader gem (https://github.com/yob/pdf-reader)在我的应用程序上(RoR with Mongoid)。 不幸的是它不起作用。我已将gem放入Gemfile中(并已完成'bundle install')。这是我的反馈:

uninitialized constant ActionView::CompiledTemplates::PDF

查看文件

<% PDF::Reader.new("somefile.pdf")%>

我试图在模型中包含库,但它不起作用。

class User
  include Mongoid::Document
  include ::PDF::Reader

我收到此错误

uninitialized constant PDF

你知道如何在Mongoid上使用pdf阅读器库吗? 我期待着你的回答。 THX!

1 个答案:

答案 0 :(得分:1)

您需要重启服务器。在你的Gemfile上添加所有gem后,你需要重新启动服务器才能在你的应用程序中使用这个gem。