module AudioMonster

Constants

VERSION

Public Class Methods

method_missing(method, *args, &block) click to toggle source

delegate to the monster inside

# File lib/audio_monster.rb, line 14
def self.method_missing(method, *args, &block)
  monster.send(method, *args)
end
monster() click to toggle source
# File lib/audio_monster.rb, line 9
def self.monster
  @_monster ||= AudioMonster::Monster.new
end