module Boty class Locale def self.reload default_locales_path = File.expand_path("../../../locale/**/*.yml", __FILE__) locales = (Dir["locale/**/*.yml"] + Dir[default_locales_path]). map { |file| File.expand_path file } I18n.load_path = locales.uniq I18n.available_locales = I18n::Backend::Simple.new.available_locales end end end