diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2017-08-01 11:22:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-01 11:22:33 -0400 |
commit | 030c66a51faf9f43bfc6093ed6cc119e9a09a09a (patch) | |
tree | 6e8faab6465af68beae72bdebc121c4c97030e20 /railties | |
parent | 009131fb58b3a2553270c56576d48b3ac5a643af (diff) | |
parent | 12f3d07439f07d7af0bd8bc4057f5ba174fc05a9 (diff) | |
download | rails-030c66a51faf9f43bfc6093ed6cc119e9a09a09a.tar.gz rails-030c66a51faf9f43bfc6093ed6cc119e9a09a09a.tar.bz2 rails-030c66a51faf9f43bfc6093ed6cc119e9a09a09a.zip |
Merge pull request #30029 from yhirano55/fix_rails_command_comments
[ci skip] Fix rails_command comments
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/actions.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/actions.rb b/railties/lib/rails/generators/actions.rb index 5cf0985050..2792d7636f 100644 --- a/railties/lib/rails/generators/actions.rb +++ b/railties/lib/rails/generators/actions.rb @@ -216,9 +216,9 @@ module Rails # Runs the supplied rake task (invoked with 'rails ...') # - # rails("db:migrate") - # rails("db:migrate", env: "production") - # rails("gems:install", sudo: true) + # rails_command("db:migrate") + # rails_command("db:migrate", env: "production") + # rails_command("gems:install", sudo: true) def rails_command(command, options = {}) execute_command :rails, command, options end |