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 52189d2 commit a6ccd0dCopy full SHA for a6ccd0d
railties/lib/rails/generators/rails/authentication/authentication_generator.rb
@@ -27,9 +27,9 @@ def configure_application
27
def enable_bcrypt
28
if File.read("Gemfile").include?('gem "bcrypt"')
29
uncomment_lines "Gemfile", /gem "bcrypt"/
30
- Bundler.with_original_env { execute_command :bundle, "" }
+ Bundler.with_original_env { execute_command :bundle, "install --quiet" }
31
else
32
- Bundler.with_original_env { execute_command :bundle, "add bcrypt" }
+ Bundler.with_original_env { execute_command :bundle, "add bcrypt --quiet" }
33
end
34
35
0 commit comments