Hi I am a quite a newbie in Rails and few days exp in ruby. I created a stopwatch program using threads. But now I want to put it inside my Rails app and the view should have buttons to start,stop,resume of the stopwatch coz I am tracking an event. Can someone show how to embed a ruby program into rails and use it from view?
The below program should be invoked from start/stop/resume buttons in view
stopwatch.rb: (It just has start method and pause method as of now)
class Stopwatch
def initialize
@t_start
@t_elapsed
@t_total
@t_current
end
def start
@t_start = Time.now
t = Thread.new do
while true do
@t_current = Time.now
puts @t_current
@t_elapsed = @t_current - @t_start
puts "Time elapsed is : #{@t_elapsed.to_i} seconds"
sleep 1
end
end
end
def pause
# Stop the Thread => Sleep the Thread until Resume is pressed.
t.kill
# Calculate the elapsed time
@t_elapsed = @t_current - @t_start
end
end
ticker = Stopwatch.new
ticker.start
Thanks,