0

对不起,如果这是一个愚蠢的问题,但这个问题很简单。如果我做,

$ rails new testproj
$ cd testporj
$ rails plugin install git://github.com/technoweenie/attachment_fu.git

应该只创建一个空项目并在其中安装 attachment_fu 。但是,尝试启动它:

$ rails s
=> Booting WEBrick
=> Rails 3.2.2 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed
in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and conf
ig/initializers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonrails.org/2012/01/04/rails
-3-2-0-rc2-has-been-released. (called from <top (required)> at c:/Users/fgadotti/rails/apps/blobtest/testproj/confi
g/environment.rb:5)
Exiting

见鬼?我错过了什么?它是我安装的 Windows 上的 rails 3.2.2。

谢谢,

4

2 回答 2

1

plugin install将在 Rails 4 中弃用。

现在首选 Gem,它们被添加到Gemfile应用程序的根目录并安装bundle install

rails 3 对 attachment_fu 的支持不是很好,我会改用carrierwave。您可以使用 Rmagick 的to_blob方法将图像存储在数据库中。

于 2012-04-10T15:43:21.537 回答
0

就像错误表明需要一个新的rails版本一样:

确保将 gemfile 添加到最新版本并运行

rake rails:update

这也是一件事,警告建议您需要将依赖项移出供应商并将它们放入您的 gemfile 然后运行:

bundle install
于 2012-04-10T15:11:20.987 回答