hashview / hashview-old

A web front-end for password cracking and analytics
http://www.hashview.io
GNU General Public License v3.0
620 stars 134 forks source link

Bundle is locked to logger (1.2.8) which has been yanked #459

Open BenKettlewell opened 5 years ago

BenKettlewell commented 5 years ago
$bundle install
Fetching gem metadata from https://rubygems.org/.......
Your bundle is locked to logger (1.2.8), but that version could not be found in any of the sources listed in your Gemfile. If you haven't changed
sources, that means the author of logger (1.2.8) has removed it. You'll need to update your bundle to a version other than logger (1.2.8) that hasn't
been removed in order to install.

Logger v1.2.8 was yanked and bundle install won't build.

Logger Issue

BenKettlewell commented 5 years ago

Modified Gemfile.lock logger version to 1.3.0 and I was able to successfully get everything up and running.

felixhertrampf commented 5 years ago

You can script the change to 1.3.0 with:

sed -i "/logger/s/$/, \'~> 1.3\', \'>=1.3.0\'/" Gemfile

You have to be in the hashview dir oc.