I've got an API mode Rails 5 app that won't let me run rake routes
or rails s
. The error I get is:
$ rake routes
rake aborted!
LoadError: Could not load the 'listen' gem. Add `gem 'listen'` to the development group of your Gemfile
.../config/environment.rb:5:in `<top (required)>'
LoadError: cannot load such file -- listen
.../config/environment.rb:5:in `<top (required)>'
Tasks: TOP => routes => environment
(See full trace by running task with --trace)
I've verified that listen
is in the development group in my Gemfile:
group :development do
gem 'listen', '~> 3.1.5'
# 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'
end
And that it's in my Gemfile.lock:
$ cat Gemfile.lock | grep 'listen'
listen (3.1.5)
spring-watcher-listen (2.0.0)
listen (>= 2.7, < 4.0)
listen (~> 3.1.5)
spring-watcher-listen (~> 2.0.0)
I've bundle updated, and bundle installed, and verified that gem install listen
works. This was working earlier this week, but I'm not having luck going back through my commits.
$ ruby -v
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14]
I don't see it in vendor/cache
but I'm not sure what to make of that...
$ bundle package | grep 'listen'
Appreciate the help!
Update:
I can "fix" the problem by putting gem 'listen', '~> 3.1.5'
in the global Gemfile (and removing it from :development
). Then all the errors go away and everything works, but that seems wrong.
I had the same issue. Thanks to @newdark answer I figured out the correct solution. Basically I wanted to deploy rails in
production
mode. But obviously forgot to set environment variableRAILS_ENV=production
before running server.So to recap, dependencies for
production
mode were installed while rails tried to start indevelopment
mode due to forgetting to setRAILS_ENV=production
. If I went on to add gemlisten
to theproduction
dependencies, I'd be running in development mode without being able to notice.For me the solution was to do
export RAILS_ENV=production
before executing any rails commands and keep dependencies intact. Hope I managed to explain.If you are on rails 5 and you are using the default config/environments/development.rb file it will have this line of code in there.
This requires the gem listen. This threw me for a bit as I was doing a rails 4 upgrades to a rails 5
edit: Forgot to mention that if you comment that line of code out it will not need the listen gem anymore.
I had similar problem today after upgrade from Rails 5.1.5 to 5.2.0. First time running the server there was the following 'missing assets' problem:
Trying to precompile the assets shows the 'gem listen error':
My solution was to explicit set production environment:
This precompiles the assets w/o problems and the 'missing assets' problem was fixed.
I'm having the same problem by running
rails c
.By reading this other Stack Overflow post I did realize that it is normal that both
bundle exec rake
command orrails console
are running in a defaultproduction
environment.I figured I will solve the issue either by:
export RAILS_ENV=production
in ~/.bash_profilebundle exec rake a_rake:task RAILS_ENV=production
rails console --env=production
etc...I'm posting this as an answer, but I don't like it.
I can "fix" the problem by putting
gem 'listen', '~> 3.1.5'
in the global Gemfile (and removing it from:development
). Then all the errors go away and everything works, but that seems wrong.I had the same problem, i fix it by running