diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2018-07-08 18:07:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 18:07:19 +0200 |
commit | 875a06b899909129422a0f307695c5b8e5409ea4 (patch) | |
tree | a082344781f3d8b7c97b5e324962ccdae97d54e8 | |
parent | 0b85123cd82a99431c12cd260a1c537a9e604a23 (diff) | |
parent | c5cee6cb9b25eb4c9e4dedef9eb97cd365065f62 (diff) | |
download | rails-875a06b899909129422a0f307695c5b8e5409ea4.tar.gz rails-875a06b899909129422a0f307695c5b8e5409ea4.tar.bz2 rails-875a06b899909129422a0f307695c5b8e5409ea4.zip |
Merge pull request #33319 from bogdanvlviv/rubocop-offense-single-quotes
Fix rubocop offense introduced in 161ed37
-rw-r--r-- | railties/lib/rails/commands/server/server_command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server/server_command.rb b/railties/lib/rails/commands/server/server_command.rb index 194db23f14..9a5d29f77d 100644 --- a/railties/lib/rails/commands/server/server_command.rb +++ b/railties/lib/rails/commands/server/server_command.rb @@ -276,7 +276,7 @@ module Rails option instead. MSG - original_options.concat [ '-u', using ] + original_options.concat [ "-u", using ] else # Use positional internally to get around Thor's immutable options. # TODO: Replace `using` occurences with `options[:using]` after deprecation removal. |