Romain Tribes

Results 9 issues of Romain Tribes

Hi, I'm writing a client for BeaconPush using Streamly and I encounter an issue with headers. In my code, I have: ``` headers = { 'X-Beacon-Secret-Key' => 'Some secret key',...

Hello! With Ruby 2, AMQP daemons doesn't react well to Ctrl-C. ``` ruby DaemonKit::Application.running! do |config| config.trap('TERM') do puts 'Going down.' end end DaemonKit::AMQP.run do |connection| puts "I'm running..." end...

Hello, I tried to add metadata in my layout and "uninitialized constant Object::META" has been raised. ``` Haml title: Default title used when the page doesn't define it! ---META !!!5...

With the following code: ``` class Format < ActiveRecord::Base include Attrio define_attributes(inspect: false) do attr :teams_count, Integer, default: 2 end end ``` The following test fails: ``` class FormatTest <...

Can you add a feature to open a new tab in Terminal (instead of a new window) ? With a Command + Click, for instance.

enhancement

Sometime you need to have only one subscription to a channel, regardless the number of times you call `subscribe`. It may be useful when you subscribe in an AJAX callback....

Hello, I'm trying Juggernaut in order to develop a webgame (with Rails) and I need private channels. I looked at your example about that but it's seems to not be...

Hi, I was wondering how to implement some kind of singleton subscription. Example: ``` Coffeescript $('body').delegate '#new_participation a', 'ajax:success', (event, data)-> channel = "games/#{data.game.id}/joins" juggernaut.subscribe channel, (data)-> console.log "Data received...",...

Hello, In my application, I want to render a template with a dynamic name. The goal is to render a recursive structure, for a Javascript tree plugin. Here is the...