mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
12 lines
313 B
Ruby
12 lines
313 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "rails/all"
|
|
|
|
module Dummy
|
|
class Application < Rails::Application
|
|
config.root = File.expand_path("../..", __FILE__)
|
|
config.eager_load = false
|
|
config.logger = Logger.new('/dev/null')
|
|
config.active_record.sqlite3.represent_boolean_as_integer = true
|
|
end
|
|
end
|