8 lines
125 B
Ruby
8 lines
125 B
Ruby
class StatusController < ApplicationController
|
|
def index
|
|
time = Time.now
|
|
@time = time
|
|
@ps = `ps aux`
|
|
end
|
|
end
|