2013-05-07 18 views
5

Jestem nowym użytkownikiem Ruby on Rails i próbowałem zrobić kilka przykładów z Internetu. Ale mam błąd, gdy próbuję wygenerować instalację devise. Zmodyfikowałem Gemfile dodając gem devis. Następnie uruchom:Błąd podczas próby wygenerowania urządzenia: zainstaluj w Ruby on Rails

bundle install 

, ale kiedy biegnę.

rails generate devise:install 

miałem kolejny błąd:

/usr/local/lib/ruby/gems/0.9.1/gems/devise-1.1.3/lib/devise.rb:193:in `mailer=': undefined method `ref' for ActiveSupport::Dependencies:Module (NoMethodError) 
    from /usr/local/lib/ruby/gems/1.9.1/gems/devise-1.1.3/lib/devise.rb:195:in `<module:Devise>' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/devise-1.1.3/lib/devise.rb:4:in `<top (required)>' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/runtime.rb:72:in `require' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/runtime.rb:72:in `block (2 levels) in require' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/runtime.rb:70:in `each' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/runtime.rb:70:in `block in require' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/runtime.rb:59:in `each' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler/runtime.rb:59:in `require' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/bundler-1.3.5/lib/bundler.rb:132:in `require' 
    from /home/mihai/Desktop/blog/config/application.rb:7:in `<top (required)>' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/commands.rb:24:in `require' 
    from /usr/local/lib/ruby/gems/1.9.1/gems/railties-3.2.13/lib/rails/commands.rb:24:in `<top (required)>' 
    from script/rails:6:in `require' 
    from script/rails:6:in `<main>' 

proszę mi pomóc!

+0

można dodawać część swojego Gemfile gdzie dołączyć gem 'opracować' – poseid

Odpowiedz

6

Wersja Devise jest dość stara.

można zrobić:

bundle update devise 

, a następnie:

bundle install 

ten powinien uaktualnić gem opracować.

+0

Dzięki wielkie! Działało teraz! – 23ars

+0

świetnie! proszę oznaczyć odpowiedź jako poprawną, kiedy ci się podoba. – poseid

0

Powinno być:

rails generate devise_install 

a nie:

rails generate devise:install