轨道是否将其自己的操作报告为已弃用



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

$ 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。

谢谢

plugin install将在 rails 4 中弃用。

Gem 现在是首选的,它们将添加到应用程序根目录中的Gemfile中,并与 bundle install 一起安装

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

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

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

rake rails:update

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

bundle install

相关内容

  • 没有找到相关文章

最新更新