Tomasz

Results 9 comments of Tomasz

Inside you can find paths to everything, eg. controllers, models, all gems.

@jamesotron It's taken me few weeks to find cause of this problem. Finally application works normally. All the problems was caused by "web-console" gem :)

OK, i know, that i have to use EventMachine, but now i have other problem. I want to test, that when I create new ChatMessage, it is published. When i...

OK, the problem is, although client subscribe channel, and receive success, it really doesn't subscribe. Server receives good message, but outgoing message looks like {"id"=>"4", "channel"=>"/chat/1", "successful"=>true}, so i think...

Hi. The only way, to get this to work is to run your app before RSpec in 'test' env. You need also use DatabaseCleaner, and set in spec_helper.rb ``` ruby...

OK, so callback.call(message) must be in the end of incoming() and outgoing() functions, and can't be in any conditional instruction like 'if', and must appear only once in all function?...

To help you I must know, what actually Faye is receive and send. You must add extension to your Faye with incoming() and outgoing() functions, where you can monitor Faye...

@Ex-Ark Did you saw this snippet? https://github.com/ajahongir/ajax-datatables-rails-v-0-4-0-how-to/blob/master/app/datatables/city_datatable.rb It says that you can do something like `custom_column` ```ruby @view_columns ||= { role: { source: "current_role"} # Remove User reference from view_columns...