fix searches

This commit is contained in:
albert
2013-02-17 21:09:25 -05:00
parent 424c9c94a8
commit 44682156c0
12 changed files with 7 additions and 37 deletions

View File

@@ -1,14 +0,0 @@
module Memorylogic
class << self
include ActionView::Helpers::NumberHelper
end
def self.memory_usage
ps = Sys::ProcTable.ps(Process.pid)
if ps.respond_to?(:pctmem)
ps.pctmem
else
0
end
end
end