module Noxy::Configuration
Constants
- LOCK
Public Instance Methods
options=(options)
click to toggle source
# File lib/noxy/configuration.rb, line 15 def options=(options) # Mutex for future threaded env. LOCK.synchronize do if options options.each_pair do |option, value| send("#{option}=", value) end end end end