I have a Rails application that I am trying to incorporate into a ruby faye stone.
I installed faye with
gem install faye
and added faye.ru to my root rail. folder:
require 'faye' Faye::WebSocket.load_adapter('thin') faye_server = Faye::RackAdapter.new(:mount => '/faye', :timeout => 45) run faye_server
When I want to start faye with:
rackup -s thin -E production config.ru
I only get:
`require': cannot load such file
How do I solve this problem?
source share