module Formol class Engine < Rails::Engine isolate_namespace Formol engine_name 'formol' config.generators do |g| g.test_framework = :rspec end config.i18n.railties_load_path = [] config.active_record.observers = [:'formol/post_observer'] #Needed to have proper locales organization paths['config/locales'] << 'config/locales/**/' end end