RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: k504866430
Try adding gem 'faye' to your Gemfile and then update your faye.ru as
gem 'faye'
require 'faye' Faye::WebSocket.load_adapter('thin') faye_server = Faye::RackAdapter.new(:mount => '/faye', :timeout => 45) run faye_server
Try adding
gem 'faye'
to your Gemfile and then update your faye.ru as