@emartech/faye-redis-sharded
Version:
Redis backend engine for Faye with support for sharding
22 lines (16 loc) • 390 B
Markdown
# Contributing to Faye
To hack on Faye, you'll need Node in order to build both the gem and the npm
package. The following should get you up and running:
```bash
# Download the code from Git
git clone git://github.com/faye/faye.git
cd faye
# Install dependencies
bundle install
npm install
# Build Faye
npm run-script build
# Run tests
bundle exec rspec -c spec/
node spec/node.js
```