LoginSignup
1
0

More than 5 years have passed since last update.

NoMethodError: undefined method `name' for nil:NilClass と出たら... パーフェクト Ruby on Rails

Last updated at Posted at 2017-03-27

パーフェクト Ruby on Rails p.54の操作中「NoMethodError: undefined method `name' for nil:NilClass」のエラーが出たら...

Railsのバージョンを指定の4.1.1から、4.1.2にバージョンアップさせましょう。

Gemfile
gem 'rails', '4.1.2'
# railsのバージョンを書き換え
Terminal
bundle update rails
# railsのバージョンを書き換えをGemfile.lockに反映 
Terminal
bundle install

エラーが出るのは、Railsのバグが原因だそうです。

参考:one by one 「NoMethodError: undefined method `name' for nil:NilClass」

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0