README.md in sinatra-websocketio-0.2.7 vs README.md in sinatra-websocketio-0.2.8
- old
+ new
@@ -31,11 +31,11 @@
Server Side
```ruby
require 'sinatra'
require 'sinatra/websocketio'
-set :websocketio, :port => 8080
+set :websocketio, :port => 9000
run Sinatra::Application
```
```ruby
io = Sinatra::WebSocketIO
@@ -159,15 +159,15 @@
### Config
```ruby
-set :websocketio, :port => 8080
+set :websocketio, :port => 9000
```
or
- % WS_PORT=8080 rackup config.ru
+ % WS_PORT=9000 rackup config.ru
Sample App
----------
@@ -180,10 +180,10 @@
----
% gem install bundler
% bundle install
% export PORT=5000
- % export WS_PORT=8080
+ % export WS_PORT=9000
% export PID_FILE=/tmp/sinatra-websocketio-test.pid
% rake test
Contributing