前提・実現したいこと
railsにおいて「rails s」コマンドを実行し、サーバーを起動させようとしたところ、
4: from /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/bootsnap-1.4.5/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:22:in `require' 3: from /home/ec2-user/environment/sub_task_app/config/application.rb:9:in `<main>' 2: from /home/ec2-user/environment/sub_task_app/config/application.rb:10:in `<module:SubTaskApp>' 1: from /home/ec2-user/environment/sub_task_app/config/application.rb:14:in `<class:Application>' /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/railties- /lib/rails/railtie/configuration.rb:97:in `method_missing': undefined method `web_console' for #<Rails::Application::Configuration:0x000000000463d720> (NoMethodError) Did you mean? console
と、エラーが出てしまい起動が出来ませんでした。
エラーメッセージを読み解き、web_consoleのgemか、application.rbに問題があると考えたのですが
特に問題が内容に見受けられ、検索しても類似の事例が出てこなかったので質問させていただきました
発生している問題・エラーメッセージ
該当のソースコード
gem file (bundle install --without productionのコマンドを打っています)
※一部略 . . . group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' gem 'faker' , '1.9.1' end . . .
gemfile.lock
GEM remote: https://rubygems.org/ specs: . . . web-console (3.7.0) . . . PLATFORMS ruby DEPENDENCIES . . . web-console (>= 3.3.0) . . . RUBY VERSION ruby 2.6.3p62 BUNDLED WITH 1.17.2
apprication.rb側
module SubTaskApp class Application < Rails::Application # Initialize configuration defaults for originally generated Rails version. config.load_defaults 5.2 unless Rails.env.production? config.web_console.whitelisted_ips = '0.0.0.0/0' end # Settings in config/environments/* take precedence over those specified here. # Application configuration can go into files in config/initializers # -- all .rb files in that directory are automatically loaded after loading # the framework and any gems in your application. end end
補足
このエラーが出る前に、herokuへのアップを行ったのですが、それがもしかすると、何らかの影響(本番環境の設定でサーバー起動になっているとか)を与えてるのでは? と考えたのですが、それの解決の糸口が見つからず、質問させていただきました。
###ツールのバージョンなど
Rails 5.2.3 ruby 2.6.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/25 12:44