diff options
author | Robert Speicher <rspeicher@gmail.com> | 2016-03-04 15:00:11 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-03-04 15:26:51 -0500 |
commit | fcfdb23a23ba7a58a6ade6846b02996f81498ad9 (patch) | |
tree | 3fcb323d6d320f099742d14c468048e82567e04d /config | |
parent | 6df45eb4630d3eef4f232398de405b169c3c6876 (diff) | |
download | gitlab-ce-fcfdb23a23ba7a58a6ade6846b02996f81498ad9.tar.gz |
Don't generate factories automatically
Diffstat (limited to 'config')
-rw-r--r-- | config/application.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/application.rb b/config/application.rb index 28684a3e578..7fd75ebe69e 100644 --- a/config/application.rb +++ b/config/application.rb @@ -93,5 +93,9 @@ module Gitlab # This is needed for gitlab-shell ENV['GITLAB_PATH_OUTSIDE_HOOK'] = ENV['PATH'] + + config.generators do |g| + g.factory_girl false + end end end |