Guest User

Untitled

a guest
May 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. module Prototype
  2. class Worker
  3. @queue = :prototype
  4.  
  5. def self.perform
  6. puts 'Background job started'
  7. time = sleep(10 + rand(10))
  8. puts "Background job stopped. Took #{time} seconds."
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment