1
0
Fork 0

Disable generators

This commit is contained in:
Alex Kotov 2018-12-07 01:12:01 +05:00
parent 20297af19e
commit f4fe84057c
No known key found for this signature in database
GPG key ID: 4E831250F47DE154

View file

@ -41,13 +41,14 @@ module Partynest
config.noreply_email_contact =
"Libertarian party of Russia <#{config.noreply_email_address}>"
# ActionMailer previews
# ActionMailer previews.
config.action_mailer.preview_path = Rails.root.join('app', 'previews')
# Don't generate system test files.
config.generators.system_tests = nil
config.generators do |g|
g.assets false
g.helper false
g.system_tests false
g.factory_bot dir: 'factories'
end
end