This is just a jotting of notes on how to embed Faye into a single Rails process. Makes it nice to do simple real time things without the need for a separate Faye server/process. Also uses Faye Redis to work across load balanced Rails apps. You also need to copy the compiled javascript into `vendor/assets/javascripts` and include into `application.js` manifest. Ignore the numbers in the file names... just used to add order to the Gist. This uses the [faye/faye](https://github.com/faye/faye) Github repo at `edc5b42f6560d31eae61caf00f6765a90e1818d1` since I wanted to use with the Puma rack server and that is only available in the master branch (until Faye 1.0) You can POST to Faye without using eventmachine by running: ``` ruby Net::HTTP.post_form(uri, { message: { data: data, channel: channel}.to_json }) ```