mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 22:36:50 +00:00
12 lines
274 B
Ruby
12 lines
274 B
Ruby
class TestApp < Rails::Application
|
|
if Rails.version.to_s.first >= '4'
|
|
config.eager_load = false
|
|
config.secret_key_base = 'abc123'
|
|
end
|
|
|
|
# Set up a logger to avoid creating a log directory on every run.
|
|
config.logger = Logger.new(nil)
|
|
end
|
|
|
|
TestApp.initialize!
|