没有要加载的文件——RMagick.rb Rails,Ubuntu
我使用 rvm 将 ruby 和 gems 安装在我的主目录中。 “require RMagick”可以在控制台和 irb 上运行,但不能在我的 Rails 应用程序中运行。我的 Gemfile 中列出了该宝石。
require 'RMagick'
class PetsController < ApplicationController
def image
image = Image.new(image_path("base/Base.png"))
#image = Pet.composite(0, '4a4a4a')
@response.headers["Content-type"] = image.mime_type
render :text => image.to_blob
end
end
如果我从控制器中删除 require,我会发现
uninitialized constant PetsController::Image
我也在 boot.rb 中尝试了 require 'RMagick'
,并使用 Magick::Image
引用 Image 对象(这给了我未初始化的常量PetsController::Magick
。
我做错了什么?
I have ruby and my gems installed in my home directory using rvm. 'require RMagick' works from the console and irb, but not from within my Rails app. I have the gem listed in my Gemfile.
require 'RMagick'
class PetsController < ApplicationController
def image
image = Image.new(image_path("base/Base.png"))
#image = Pet.composite(0, '4a4a4a')
@response.headers["Content-type"] = image.mime_type
render :text => image.to_blob
end
end
If I remove the require from my controller, I get
uninitialized constant PetsController::Image
I also have tried require 'RMagick'
in boot.rb, and by referring to the Image object using Magick::Image
(which gives me uninitialized constant PetsController::Magick
.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决了!重新启动服务器修复了它。我想当我将 rmagick 添加到我的 gemfile 时我没有重新启动服务器。
Solved it! Restarting the server fixed it. I guess I hadn't restarted the server when I added rmagick to my gemfile.
您是否有可能与安装了
RMagick
gem 的用户以外的其他用户一起运行 Rails 应用程序?Is it possible that you are running the rails app with another user than the one that has the
RMagick
gem installed?