README.md in faye-rails-2.0.1 vs README.md in faye-rails-2.0.3

- old
+ new

@@ -10,10 +10,17 @@ # Heroku Add-on If you're planning on running Faye on Heroku you're probably going to have a bad time. Take a look at [MessageRocket](https://messagerocket.co/) as an alternative, and help support the author to maintain more great open source projects. +## Caveat + +faye-rails is used in production by a lot of folks, none of whom are me. As +I don't use faye-rails in my daily life I will not be responding to issues +unless they have a corresponding PR. If you'd like to take over maintaining +this project then get in contact. + # Embedded server Due to the limitations of most Rack-based web servers available Faye can only be run on Thin, however if you are using thin, then you can add as many Faye servers as you want to the Rails middleware stack like so: ```ruby @@ -31,17 +38,9 @@ callback.call(message) end end add_extension(MockExtension.new) -end -``` - -If you really want to, you can ask Faye to start it's own listening Thin server on an arbitrary port: - -```ruby -config.middleware.use FayeRails::Middleware, mount: '/faye', :timeout => 25 do - listen(9292) end ``` You can also do some rudimentary routing using the map method: