class RamMonitor
Public Class Methods
new()
click to toggle source
# File lib/wasp/monitors/ram_monitor.rb, line 6 def initialize @sleep_seconds = 4 end
Public Instance Methods
pause_after_run()
click to toggle source
# File lib/wasp/monitors/ram_monitor.rb, line 14 def pause_after_run sleep @sleep_seconds end
run()
click to toggle source
# File lib/wasp/monitors/ram_monitor.rb, line 10 def run end
test_code()
click to toggle source
# File lib/wasp/monitors/ram_monitor.rb, line 19 def test_code return ("monitor.ram") end