box-o-sand/cookbook/015/01/status/app/controllers/status_controller.rb
2011-08-08 21:15:59 -04:00

8 lines
125 B
Ruby

class StatusController < ApplicationController
def index
time = Time.now
@time = time
@ps = `ps aux`
end
end