aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMing Qu <qucool@gmail.com>2015-10-24 21:09:14 +0800
committerMing Qu <qucool@gmail.com>2015-10-24 21:09:14 +0800
commitbb322ee19d203ff70cee79a058f3cae406ae338c (patch)
treeb82e66efcc63455c65e1c98f8f3b50d702bb56ac /README.md
parentd88bad3e96911ea5e43f8473f81ad9a92d8df3de (diff)
downloadrails-bb322ee19d203ff70cee79a058f3cae406ae338c.tar.gz
rails-bb322ee19d203ff70cee79a058f3cae406ae338c.tar.bz2
rails-bb322ee19d203ff70cee79a058f3cae406ae338c.zip
Remove unnecessary space in README [ci skip]
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5b29bcdecf..94c40f079f 100644
--- a/README.md
+++ b/README.md
@@ -319,7 +319,7 @@ application. The recommended basic setup is as follows:
```ruby
# cable/config.ru
-require ::File.expand_path('../../config/environment', __FILE__)
+require ::File.expand_path('../../config/environment', __FILE__)
Rails.application.eager_load!
require 'action_cable/process/logging'
@@ -330,7 +330,7 @@ run ActionCable.server
Then you start the server using a binstub in bin/cable ala:
```
#!/bin/bash
-bundle exec puma -p 28080 cable/config.ru
+bundle exec puma -p 28080 cable/config.ru
```
The above will start a cable server on port 28080. Remember to point your client-side setup against that using something like: