Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more
Object
Use the Monitor class when you want to have a lock object for blocks with mutual exclusion.
require 'monitor' lock = Monitor.new lock.synchronize do # exclusive access end