Sha256: baab473765529cd5a7b430b57606d8103c6fbd3244abf6fc6e17c98b645f3e17

Contents?: true

Size: 467 Bytes

Versions: 1

Compression:

Stored size: 467 Bytes

Contents

module ActiveI18n
  class Engine < ::Rails::Engine
    isolate_namespace ActiveI18n

    initializer 'active_skin.action_controller' do |app|
      ActiveSupport.on_load :action_controller do
        helper ActiveI18n::ViewHelper
      end
    end

    config.generators do |g|
      g.test_framework      :rspec,        :fixture => false
      g.fixture_replacement :factory_girl, :dir => 'spec/factories'
      g.assets false
      g.helper false
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_i18n-0.0.1 lib/active_i18n/engine.rb