module Bernstein
Constants
- VERSION
Public Class Methods
configure!(options = {})
click to toggle source
# File lib/bernstein.rb, line 15 def self.configure!(options = {}) RedisQueue.configure!(options[:redis_queue]) OSCConnection.configure!(options[:osc_client]) Server.configure!(options[:osc_server]) end
configure_from_yaml!(file_path)
click to toggle source
# File lib/bernstein.rb, line 11 def self.configure_from_yaml!(file_path) configure!(YAML.load_file(file_path)) end