diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2016-08-10 06:36:39 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2016-08-10 06:36:39 +0900 |
commit | f006de5dc5a709f5dc8604ebd43f7741da30cd9f (patch) | |
tree | 94789c1c7f3c8e1c611a30548cd90ecbb34f98ea /railties/lib/rails | |
parent | 67d0c9ee93100dbdcafd20b0632e5bef6735888e (diff) | |
download | rails-f006de5dc5a709f5dc8604ebd43f7741da30cd9f.tar.gz rails-f006de5dc5a709f5dc8604ebd43f7741da30cd9f.tar.bz2 rails-f006de5dc5a709f5dc8604ebd43f7741da30cd9f.zip |
Fix broken alignments caused by auto-correct commit 411ccbd
Hash syntax auto-correcting breaks alignments. 411ccbdab2608c62aabdb320d52cb02d446bb39c
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/commands/server.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/server.rb b/railties/lib/rails/commands/server.rb index bf8ae0a5ee..0339849bfe 100644 --- a/railties/lib/rails/commands/server.rb +++ b/railties/lib/rails/commands/server.rb @@ -88,7 +88,8 @@ module Rails end def default_options - super.merge( Port: ENV.fetch("PORT", 3000).to_i, + super.merge( + Port: ENV.fetch("PORT", 3000).to_i, Host: ENV.fetch("HOST", "localhost").dup, DoNotReverseLookup: true, environment: (ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development").dup, |