module Beatport

TODO deprecated in latest api version?

Public Class Methods

const_missing(name) click to toggle source
Calls superclass method
# File lib/beatport.rb, line 18
def self.const_missing(name)
  if Beatport::Catalog.const_defined?(name)
    $stderr << "Beatport::#{name} has moved to Beatport::Catalog::#{name}, please ajust your code accordingly"
    Beatport::Catalog.const_get(name)
  else
    super
  end
end