Getting Bundler to work in FIPS mode

Step-by-step guide

  1. gem install bundler
  2. 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)
  3. grep -R -i md5 *
    (this will search recursively for any file that has md5 [also case-insensitive] )
  4. In .rb files,
    change any occurrence of digest/md5 to digest
    and change any occurrence of MD5 to SHA256
  5. You should be good