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

一体?私は何を取りこぼしたか?私がインストールしたウィンドウのレール3.2.2です。

ありがとう、

4

2 に答える 2

1

plugin installRails 4 で非推奨になります。

Gemfileアプリケーションのルート ディレクトリに追加され、インストールされる Gem が優先されるようになりました。bundle install

attachment_fu は Rails 3 ではあまりサポートされていません。代わりに、carrierwave を使用します。Rmagick のto_blobメソッドを使用して、画像をデータベースに保存できます。

于 2012-04-10T15:43:21.537 に答える
0

エラーが示すように、新しいレールバージョンが必要であることを示しています:

gemfile を最新バージョンに追加して実行してください。

rake rails:update

これは、依存関係をベンダーから移動し、それらを gemfile に入れてから実行する必要があることを警告が示唆していることでもあります。

bundle install
于 2012-04-10T15:11:20.987 に答える