LoadError: cannot load such file -- mime/types (LoadError)

56 Views Asked by At

I am trying to migrate a Redmine plugin to 5.x. And then I hit this error:

LoadError: cannot load such file -- mime/types (LoadError)

The code is like:

# coding: utf-8
require 'nkf'
require 'csv'
require 'mime/types'

I tried gem install mime but the issue was still there.

1

There are 1 best solutions below

1
David Peng On

The issue got resolved. I put mime-type in Gemfile and the issue is gone. The issue can't fixed by manually installing mime-type. This is a newbie issue.