├── Gemfile ├── Gemfile.lock ├── Procfile ├── README ├── README.md ├── config.ru └── config └── initializers └── faye_token.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/BlabSayFaye/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/BlabSayFaye/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/BlabSayFaye/HEAD/Procfile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/BlabSayFaye/HEAD/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/BlabSayFaye/HEAD/config.ru -------------------------------------------------------------------------------- /config/initializers/faye_token.rb: -------------------------------------------------------------------------------- 1 | FAYE_TOKEN = "anything" --------------------------------------------------------------------------------