没有要加载的文件——RMagick.rb Rails,Ubuntu

发布于 2024-12-07 21:01:15 字数 682 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

○闲身 2024-12-14 21:01:15

解决了!重新启动服务器修复了它。我想当我将 rmagick 添加到我的 gemfile 时我没有重新启动服务器。

Solved it! Restarting the server fixed it. I guess I hadn't restarted the server when I added rmagick to my gemfile.

暖风昔人 2024-12-14 21:01:15

您是否有可能与安装了 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文