Support for the Ruby 2.1 series ended on March 31 2017. See here for details.
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