byroot/frozen_record

View on GitHub
lib/frozen_record/railtie.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module FrozenRecord
  class Railtie < Rails::Railtie
    initializer "frozen_record.setup" do |app|
      app.config.eager_load_namespaces << FrozenRecord
    end
  end
end