faye-rails icon indicating copy to clipboard operation
faye-rails copied to clipboard

Simple Rails glue for the Faye messaging protocol.

Results 30 faye-rails issues
Sort by recently updated
recently updated
newest added

Sorry for stupid question (I'm not ruby developer) but how to enable faye logging ? Trying ``` config.middleware.use FayeRails::Middleware, mount: '/faye', :timeout => 25 do FayeRails.logger = Logger.new(STDOUT) end ```...

- ruby 2.1.2 - rails '4.1.6' - faye-rails 2.0.0 With no identified reason and inconsistently, this error is raised once or twice a day, for an app in production, by...

Currently `faye-rails` depends on `faye` v.1.1.2 which has a critical issue faye/faye#295 which could be used for DoS attack.

The eventmachine dependency in rubygems needs to be updated...most gems these days are eventmachine >= 1.2 - causing gemfile issues

Can anyone help with this problem http://stackoverflow.com/questions/34810587/faye-rails-ngnix-passenger-slow-responce-from-faye ?

Rails 4.2.0 ruby 2.2.1p85 (2015-02-26 revision 49769) [x86_64-linux] thin 1.6.3 I got this error when creating/saving observed model in `rake db:seed` or in console. I have this in `config/initializers/faye.rb` I...

Hi. I found some weird bug in faye-rails. After page reload session object size is ~100KB. Normal. Interesting things happen after any AJAX request. When I try to print session...

I am unable to make the server listens on a another port rather than the one that rails server use when I tried the following command: ``` config.middleware.use FayeRails::Middleware, mount:...

Hey, I'm currently using Faye for chat with Devise for Authentication, but I'm unable to access the Devise current_user or authenticate_user! methods within FayeRails::Controller. Has anyone figured out a way...

My site goes down as soon as I mount the Faye middleware on Passenger 5.06 and nginx 1.6.2. This is how I'm mounting the middleware: ``` config.middleware.delete Rack::Lock if Rails.env.production?...