Getting Bundler to work in FIPS mode
Step-by-step guide
gem install bundler
- find where the bundle ruby gem is installed (e.g. /usr/local/share/gems/gems/bundler-1.13.1/ or ~/.rvm/gems/ruby-<RUBY_VERSION>/gems/bundler-1.13.1)
grep -R -i md5 *
(this will search recursively for any file that has md5 [also case-insensitive] )- In .rb files,
change any occurrence ofdigest/md5
todigest
and change any occurrence ofMD5
toSHA256
- You should be good
Related articles