0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Railsチュートリアル第二章でのミス(自分用メモ)

Last updated at Posted at 2021-02-22

しょうもないミスですが自分の記録として残しておきます。

チュートリアルの第二章のでサーバーを立ち上げようと以下を実行したらエラー発生。

$ rails s

すると、こんなエラーが出る。

/home/ubuntu/environment/toy_app/config/environments/development.rb:64:in `block in <main>': undefined method `config' for ActiveSupport:Module (NoMethodError)

一時間調べまわった結果、消しちゃいけないものを消していました。

config/environments/development.rb

config.file_watcher = ActiveSupport::EventedFileUpdateChecker
config/environments/development.rb
config.file_watcher = ActiveSupport::

おそらく自分で気づかないうちに消していたと思われます。
何やってるんだ。。

入力しなおしたら無事サーバーを立ち上げることができました。

操作ミスには十分注意しないといけませんね。

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?