Sha256: 0e269324dc2e6042fa94081b47a04b3fb1f67025756b89527bf613e2864a126a
Contents?: true
Size: 377 Bytes
Versions: 9
Compression:
Stored size: 377 Bytes
Contents
module Resque class Pool module Logging # Given a string, sets the procline ($0) # Procline is always in the format of: # resque-pool-master: STRING def procline(string) $0 = "resque-pool-master: #{string}" end # TODO: make this use an actual logger def log(message) puts message end end end end
Version data entries
9 entries across 9 versions & 1 rubygems