0

我目前正在使用ChunkyPNG,但我想尝试一下OilyPNG。我已经尝试在一个简单的 ruby​​ 脚本中使用它,并且性能要好得多。我基本上在 Gemfile 中安装了这两个 gem,并在我的脚本中需要 'oily_png'。

但是,在我的 RoR 应用程序中,我看不到如何require 'oily_png'. 我目前在任何地方都不需要 chunky_png,但在文档中说我需要require 'oily_png'. 我会在哪里做呢?

谢谢!

4

1 回答 1

2

只是避免在 Gemfile 上要求 ChunkyPNG。像这样的东西:

gem 'chunky_png', :require => false

所以,ChunkyPNG gem 将被安装,但是当 Rails 告诉Bundler需要所有 gem 时,这个不是必需的,但OilyPNG会。

于 2013-11-15T19:48:41.010 回答