Each time Paperclip::Glue is included, I18n.load_paths += ... is being executed.
This is happening because locale_path is an array of file paths which will not exist as a single item in I18n.load_path,
so I18n.load_path.include?(locale_path) always returns false
Each time
Paperclip::Glue
is included,I18n.load_paths += ...
is being executed.This is happening because
locale_path
is an array of file paths which will not exist as a single item inI18n.load_path
, soI18n.load_path.include?(locale_path)
always returns false