Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New Project configuration

I have installed ruby and rails on my system properly, create new project then its shows some error:

Fetching gem metadata from https://rubygems.org/..........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.2.2)
Using i18n (0.6.9)

Bundler::GemNotFound: Could not find minitest-4.7.5.gem for installation
An error occurred while installing minitest (4.7.5), and Bundler cannot continue.
Make sure that `gem install minitest -v '4.7.5'` succeeds before bundling.

I am stuck here... please help me....

like image 488
user3436543 Avatar asked Feb 16 '26 23:02

user3436543


2 Answers

to remove this error just do this

gem install minitest -v '4.7.5'

after you do

$ rails new abc

may be you face this jQuery error so run this command also $ sudo apt-get install nodejs

like image 87
Jaskaran singh Rajal Avatar answered Feb 19 '26 11:02

Jaskaran singh Rajal


Why you are stucked here. In terminal just copy and paste it

gem install minitest -v '4.7.5'

This command will install minitest gem and then you can run the bundle command again to install remaining gems.

like image 37
Ishank Gupta Avatar answered Feb 19 '26 11:02

Ishank Gupta