Displaying 20 results from an estimated 4000 matches similar to: "Juggernaut Rails 3"
2009 Aug 20
1
Juggernaut question
Hi all, I''ve recently downloaded the juggernaut plugin and I was
wondering if I could get some advice from anyone who''s used this on a
real site. I have it working just fine on my local version, but on my
live server it doesn''t seem to be working. It sends the information to
the server just fine, but the text doesn''t get inserted. So I have a
couple questions
1997 Sep 23
1
C''t Article on Juggernaut
There is a recent article in the German magazine C''t that may be of
interest to those on this list. It describes a cracker program,
Juggernaut, which can hijack telnet sessions. The program is written
specifically to run under Linux. An english translation of the article
is available at:
http://www.ix.de/ct/english/9710142/
It also mentions that they are working on a version of the
2006 Jul 20
16
Juggernaut Released - (a.k.a Armageddon)
I''ve just released Juggernaut - a plugin for ruby on rails.
Check out the site: http://juggernaut.rubyforge.org
I?ve also finished a demo that illustrates some of Juggernuat?s
capabilities. You can sign up for an account here:
http://alexmaccaw.no-ip.info:3500/login/sign_up . It might be a tad slow
as it?s running from my home machine.
Juggernaut for Ruby on Rails initiates a flash
2010 Jul 04
2
Rendering a different format in the implementation of a renderer
Yehuda has a nice article on implementing a custom renderer for PDF at
http://www.engineyard.com/blog/2010/render-options-in-rails-3/
I''ve tried to follow the example and I''m not sure I see how to get it to
work. If I understand things correctly, the format(s) usable in this
render call
respond_with(@resource) do |format|
format.xyz { render :xyz => ... }
end
2011 Feb 08
1
Rails and WebSockets
I''m thinking of starting on a Ruby website that uses WebSockets, and
perhaps working some on a server for it beforehand. Is good support
for asynchronous connections something I could work on adding to the
Rails core? Is it feasible? Desired? As I understand it, Rails plugins
like Juggernaut [1] aren''t going to optimally support async, since
they can''t re-architecture
2010 Feb 10
4
AJAX responses
Does anyone know if it''s possible to do multiple AJAX responses to a
single request in Rails? I did some googling but didn''t find anything
extremely helpful.
Thanks.
--
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
2008 Oct 31
0
Error while installing juggernaut gem
Hi,
I have tried to install juggernaut gem using the command
gem install juggernaut
and got the following error
D:\Sreejith\Ruby1\ruby>gem install juggernaut
Building native extensions. This could take a while...
ERROR: Error installing juggernaut:
ERROR: Failed to build gem native extension.
D:/Sreejith/Ruby1/ruby/bin/ruby.exe extconf.rb install juggernaut
checking for
2006 Jul 05
2
How do I access the session in a rails plugin?
I''m trying to access the session in a rails plugin, so as to set it as
below.
1. module Juggernaut
2.
3. def self.set_channels(chan)
4. session[:juggernaut_channels] = chan
5. end
6. end
7.
8. module ActionController
9. class Base
10. include Juggernaut
11. end
12. end
At the moment I get: undefined local variable or method `session'' for
2007 Feb 12
1
Rails Push Server?
So, I investigated this a while ago... does anybody have good
experience/good instructions as to how to move your rails app to using
a push server? Which ones are best? Most Stable? Easiest to
implement and use?
Our site is currently doing some regular polling, and it''s getting
hairy fast. I looked into using Juggernaut a while ago, but I''m not
certain it''s going to
2006 May 09
7
When to use optimistic locking?
Hi All,
I''m having some trouble deciding when and how to implement optimistic
locking.
Let''s say I have a multiuser Rails app, and let''s say it stores,
among other things "vital" customer information.
The standard methods created by the Rails generate scaffold script
look like this:
def edit
@customer = Customer.find(params[:id])
end
2008 Feb 10
1
DRb + Chat interface?
Hello,
I''m an amateur rails developer, and am currently developing a project
that needs a somewhat specialized chat client. I''ve recently become
enamored with DRb, and was wondering if anyone had tried implementing
it when attempting to make a chat client. The reason I want to use DRb
instead of some other way of doing it is because if I understand it
right the client should be
2008 Oct 28
7
How to override one method of AssetTagHelper
I created a file ./lib/action_view/helpers/asset_tag_helper.rb
and put in it only the method I want to override. like this
module ActionView
module Helpers #:nodoc:
module AssetTagHelper
def image_path(source)
compute_public_path(source, ''images'')
end
end
end
end
But as soon I try this all the others methods from the overriden module
are not
2008 Jul 23
5
Updating the page dynamically
Hi, I''m developing a Rails application that displays data from MySQL
database table. I have an external python script that adds new rows to
the table. My goal is to dynamically add new rows to the html table
which is displayed in my browser (without reloading the page). I''ve
read that Ajax can handle this task ("periodically_call_remote"). But
I don''t want to
2006 Oct 19
8
Mongrel::HttpHandlerPlugin
Hi,
I''m trying to write a file upload monitor for mongrel that uses
juggernaut to alert the browser of a change. I''m writing a plugin that
uses Mongrel::HttpHandlerPlugin but it looks like the only method that
gets called is process and that is only when the upload has finished.
I''m setting the following:
@request_notify = true
But I am still only getting process to
2011 Oct 11
5
Polymorphic association with Active Admin
I have a belongs_to polymorphic association and I don''t know how to
create and edit my models of that relationship with active admin.
If anyone can help me, please do.
Thank you,
Rodrigo
--
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
2008 Oct 31
3
Date_select vs wrong date weird behavior
In my date_select if I choose 31 april 2008, it converts it for 1st may
2008 which it seems odd for me?
I say odd because first its difficult to validate at the model level, I
have to hook some code in the controller and secondly when I finally get
the validation errors I have to go back at the edit page and show the
selected date(and the error message) which should be 31 april 2008 but
the date
2006 Aug 14
14
ClockingIT Beta - It''s about time...
My wife and I have been working on our own task-listing, time-tracking
web application, and we''re really interested in some feedback as we
ourselves feel we''ve come a long way.
If you have some minutes to kill (or just want to see how the Comet
functionality provided by the Juggernaut plugin can work) have a look at
http://www.clockingit.com and
2009 Jan 26
1
Mongrel::HttpParserError
I''m new to rails, started first project today.
I''m also using flex and want to go RESTful over HTTP as much as
possible, most posts seem to think this is not possible!
Everything runs RESTfuly fine in the flex local sandbox, but fails in
the remote sandbox due to security.
I''m using as3httpclientlib as HTTPService doesn''t do the job.
Flash sends a request
2006 Aug 16
2
Server Push, with Active MQ?
I''ve read the postings about Juggernaut with interest, it is an
interesting approach but in wondering about a solution that wouldn''t
require flash I did some searching and came across activemq
(http://incubator.apache.org/activemq).
Their approach for messaging to an AJAX client
(http://incubator.apache.org/activemq/ajax.html)seems to be a
combination of polling and keeping
2010 May 31
0
TCPSocket.new(host,port).readline hangs on windows :(
Hi Guys
I am starting a new thread as it seems my gripe isnt to do with
Juggernaut but with TCPSocket - which is used by Juggernaut.
Turns out that the thing that actually hangs up in Juggernaut after x
(130/1500/16000) iterations of
(1..1000).each {|i| Juggernaut.show_clients}
Is actually the line
res << @socket.readline(CR) if response
in juggernaut.rb.
Seems @socket.readline