box-o-sand/oldstuff/RubyFun/cookbook/015/hodgepodge/app/controllers/status_controller.rb

9 lines
154 B
Ruby

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