Are there any plans to update the Juggernaut gem to be compatible with Rails 3? It doesn''t seem to work as of now with Rails 3, unless I set up the whole thing wrong. Also are there any good working alternatives for a push server? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Same thing for me, I plan to put online a site with juggernaut this fall, an I keep wondering if its the right gem for a chatting engine. Is there any other gem or libs more up to date? Rémi Kenneth wrote:> Are there any plans to update the Juggernaut gem to be compatible with > Rails 3? It doesn''t seem to work as of now with Rails 3, unless I set up > the whole thing wrong. Also are there any good working alternatives for > a push server?-- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Why not fork the repository on github, dive into the code, fix the incompatibilities (also a good exercise on getting familiar with Rails 3 and Railties) and donate back to the community? On 03 Aug 2010, at 15:42, Rémi Gagnon wrote:> Same thing for me, I plan to put online a site with juggernaut this > fall, an I keep wondering if its the right gem for a chatting engine. > Is there any other gem or libs more up to date? > > Kenneth wrote: >> Are there any plans to update the Juggernaut gem to be compatible >> with >> Rails 3? It doesn''t seem to work as of now with Rails 3, unless I >> set up >> the whole thing wrong. Also are there any good working alternatives >> for >> a push server?Best regards Peter De Berdt -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Wednesday 04 August 2010, Peter De Berdt wrote:> Why not fork the repository on github, dive into the code, fix the > incompatibilities (also a good exercise on getting familiar with > Rails 3 and Railties) and donate back to the community?I haven''t looked at the juggernaut code in ages, even though I''ve (re)written parts of it once upon a time. The major task of bringing it to Rails 3 would be to replace alias_method_chaining on render, into a custom renderer. Something like ActionController.add_renderer :juggernaut do |template, options| ... end I wouldn''t expect changes to the core implementation, but mostly to the packaging (plugin, engine) and integration with ActionView. The server itself doesn''t depend on Rails, AFAICT, so it wouldn''t be affected by version changes. Michael -- Michael Schuerig mailto:michael-q5aiKMLteq4b1SvskN2V4Q@public.gmane.org http://www.schuerig.de/michael/ -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.