module MIDIFX

Constants

MAP
NotchFilter
VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source
Calls superclass method
# File lib/midi-fx.rb, line 33
def self.method_missing(method, *args, &block)
  if MAP.keys.include?(method)
    message = args.shift
    MAP[method].new(*args).process(message, &block)
  else
    super
  end
end