We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4723e04 commit 2c0d26aCopy full SHA for 2c0d26a
config/application.rb
@@ -26,8 +26,5 @@ class Application < Rails::Application
26
# Application configuration can go into files in config/initializers
27
# -- all .rb files in that directory are automatically loaded after loading
28
# the framework and any gems in your application.
29
-
30
- # Don't generate system test files.
31
- config.generators.system_tests = nil
32
end
33
config/initializers/generators.rb
@@ -0,0 +1,10 @@
1
+Rails.application.config.generators do |generate|
2
+ generate.helper false
3
+ generate.request_specs false
4
+ generate.routing_specs false
5
+ generate.stylesheets false
6
+ generate.system_tests = nil
7
+ generate.test_framework :rspec
8
+ generate.view_specs false
9
+end
10
+
0 commit comments