I would like to call a ruby script from a html page passing a few
parameters, something like:
Search
Anybody knows how to do it?
Thanks.
I would like to call a ruby script from a html page passing a few
parameters, something like:
Search
Anybody knows how to do it?
Thanks.
Not too sure what you are trying to do here. The fact that you are
invoking
against your local system is a bit weird, and I dont think that is
workable.
Might work for locally loaded Javascript, but not in a HREF.
If you are hitting a server, this can be made to work, as CGI (similar
to
how
you would invoke against a PHP script), but CGI is not a popular way to
run Ruby web apps, and it is very poorly documented in general (its
eclipsed
by all the other methods).
Again, your parameters would have to be appropriate for a query string,
you
couldn’t
rely on passing them in as command line arguments.
For isntance:
What I’m trying to do is to call a ruby script that admits parameters.
This program is going to be run locally.
The problem is no parameters are taken since the explorers try to
download the file instead of running the file.
Another way to solve this would be to run directly the code on the
page… is that possible?
Thanks
On Wed, Mar 24, 2010 at 10:56 AM, Richard C.
[email protected]wrote:
by all the other methods).
If the ruby script doesn’t rely on being run on the server, you could
try
HotRuby: http://hotruby.yukoba.jp/
but in HotRuby only a few implemented methods are allowed.
On Wed, Mar 24, 2010 at 5:05 PM, Mario R. [email protected] wrote:
What I’m trying to do is to call a ruby script that admits parameters.
This program is going to be run locally.
The problem is no parameters are taken since the explorers try to
download the file instead of running the file.Another way to solve this would be to run directly the code on the
page… is that possible?
There are a couple of exotic ways to run ruby in your browser. All of
them
work like
Java applets.
You can Jar up your ruby code with JRuby, and you might be able to
locally
invoke on
it that way.
A similar method works for IronRuby, to get your Ruby code inside a
silverlight applet.
On Thu, 25 Mar 2010 02:05:10 +0900
Mario R. [email protected] wrote:
What I’m trying to do is to call a ruby script that admits
parameters. This program is going to be run locally.
The problem is no parameters are taken since the explorers try to
download the file instead of running the file.Another way to solve this would be to run directly the code on the
page… is that possible?Thanks
I don’t know of any browser what would execute the file, even if
the page was loaded locally…
But running a small local webserver will work. Ruby the code below and
then link to http://localhost:4000/run .
require ‘webrick’
class RunScript < WEBrick::HTTPServlet::AbstractServlet
def do_GET(req, res)
system(“c:/myS/search.rb param1 param2”)
res.status = 200
res[‘Content-Type’] = ‘text/html’
res.body = “
server = WEBrick::HTTPServer.new(:Port => 4000)
server.mount(“/run”, RunScript)
trap(“INT”){ server.shutdown }
server.start
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs