I have a Ruby on Rails application that has been running fine for some time. Today, I added a few features to it and then started the application in a development environment, which started fine without errors. But when I try to access the application on my browser, I run into this error:
NameError: uninitialized constant Bootsnap::CompileCache::ISeq>)
I have tried updating the Bootsnap gem to the latest version:
gem 'bootsnap', '>= 1.4.6'
Deleted the Gemfile.lock
file
rm -rf Gemfile.lock
And then ran bundle update command to update the gems
bundle update
But no success yet, since I am still running into the same issue. Any form of help will be highly appreciated. Thanks.