diff options
author | Pat Allan <pat@freelancing-gods.com> | 2017-07-22 22:45:53 +1000 |
---|---|---|
committer | Pat Allan <pat@freelancing-gods.com> | 2017-08-14 19:00:24 +0200 |
commit | d435c92721a1fbecf0bc6d1b6c5cf95d228c851a (patch) | |
tree | c08015501962c1f6c513e526ed8959880a9e921b /railties/lib/rails/command | |
parent | 5949cc05d395f5e1435d04d4adee7b26f13a517d (diff) | |
download | rails-d435c92721a1fbecf0bc6d1b6c5cf95d228c851a.tar.gz rails-d435c92721a1fbecf0bc6d1b6c5cf95d228c851a.tar.bz2 rails-d435c92721a1fbecf0bc6d1b6c5cf95d228c851a.zip |
Railties updates for frozen string literals.
Diffstat (limited to 'railties/lib/rails/command')
-rw-r--r-- | railties/lib/rails/command/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/command/base.rb b/railties/lib/rails/command/base.rb index cd0720be4e..d986df8a80 100644 --- a/railties/lib/rails/command/base.rb +++ b/railties/lib/rails/command/base.rb @@ -73,7 +73,7 @@ module Rails # Use Rails' default banner. def banner(*) - "#{executable} #{arguments.map(&:usage).join(' ')} [options]".squish! + "#{executable} #{arguments.map(&:usage).join(' ')} [options]".squish end # Sets the base_name taking into account the current class namespace. |