I installed rails 6 beta and I used rvm also.
gem install rails --pre
My Gemfile has:
gem 'rails', '~> 6.0.0.beta1'
When I try and run the rails using:
rails s
I get this error:
Ignoring bindex-0.5.0 because its extensions are not built. Try: gem pristine bindex --version 0.5.0 Ignoring bootsnap-1.4.0 because its extensions are not built. Try: gem pristine bootsnap --version 1.4.0 Ignoring byebug-11.0.0 because its extensions are not built. Try: gem pristine byebug --version 11.0.0 Rails is not currently installed on this system. To get the latest version, simply type:
$ sudo gem install rails
You can then rerun your "rails" command.
I already installed rails, so not sure why I am seeing this error?