mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
require "friendly_id"
|
|
|
|
module Dashboard
|
|
class Engine < ::Rails::Engine
|
|
isolate_namespace Dashboard
|
|
|
|
config.generators do |g|
|
|
g.test_framework :rspec
|
|
g.fixture_replacement :factory_bot
|
|
g.factory_bot dir: "spec/factories"
|
|
end
|
|
end
|
|
end
|