V
Virendra Negi
hello everyone
I am currently stuck with the Ruby process
I was previous working on windows and with the help of win32-process gem
I was able to achieve this
starter = 'ruby test.rb'
pid = Process.create
app_name => starter)
this work fine under windows
Now in ubuntu when i am trying to achieve this same thing with fork
it doesn't work
the ruby code under ubuntu is like this
starter = 'ruby test.rb'
pid = Process.fork {starter}
is there something that i am missing any where
thanks anyway
I am currently stuck with the Ruby process
I was previous working on windows and with the help of win32-process gem
I was able to achieve this
starter = 'ruby test.rb'
pid = Process.create
this work fine under windows
Now in ubuntu when i am trying to achieve this same thing with fork
it doesn't work
the ruby code under ubuntu is like this
starter = 'ruby test.rb'
pid = Process.fork {starter}
is there something that i am missing any where
thanks anyway