Module: Beatport

Extended by:
Config
Defined in:
lib/beatport/catalog/feature.rb,
lib/beatport.rb,
lib/beatport/item.rb,
lib/beatport/error.rb,
lib/beatport/price.rb,
lib/beatport/client.rb,
lib/beatport/config.rb,
lib/beatport/catalog.rb,
lib/beatport/support.rb,
lib/beatport/collection.rb,
lib/beatport/catalog/key.rb,
lib/beatport/catalog/mix.rb,
lib/beatport/support/url.rb,
lib/beatport/catalog/home.rb,
lib/beatport/catalog/keys.rb,
lib/beatport/catalog/list.rb,
lib/beatport/catalog/part.rb,
lib/beatport/catalog/chart.rb,
lib/beatport/catalog/genre.rb,
lib/beatport/catalog/image.rb,
lib/beatport/catalog/label.rb,
lib/beatport/catalog/mixed.rb,
lib/beatport/catalog/slide.rb,
lib/beatport/catalog/state.rb,
lib/beatport/catalog/track.rb,
lib/beatport/catalog/artist.rb,
lib/beatport/catalog/images.rb,
lib/beatport/catalog/search.rb,
lib/beatport/support/parser.rb,
lib/beatport/catalog/country.rb,
lib/beatport/catalog/release.rb,
lib/beatport/catalog/currency.rb,
lib/beatport/catalog/djprofile.rb,
lib/beatport/catalog/item_type.rb,
lib/beatport/catalog/slideshow.rb,
lib/beatport/support/inflector.rb,
lib/beatport/support/middleware.rb,
lib/beatport/catalog/source_type.rb,
lib/beatport/catalog/account_type.rb,
lib/beatport/catalog/audio_format.rb,
lib/beatport/catalog/autocomplete.rb,
lib/beatport/catalog/dynamic_image.rb,
lib/beatport/support/query_builder.rb,
lib/beatport/catalog/chart_overview.rb,
lib/beatport/catalog/dynamic_images.rb,
lib/beatport/catalog/recommendations.rb,
lib/beatport/catalog/audio_format_fee.rb

Overview

TODO deprecated in latest api version?

Defined Under Namespace

Modules: Catalog, Client, Config, Support Classes: Collection, Error, Item, Price

Instance Attribute Summary

Attributes included from Config

#access_token_key, #access_token_secret, #consumer_key, #consumer_secret

Class Method Summary collapse

Class Method Details

.const_missing(name) ⇒ Object



18
19
20
21
22
23
24
25
# 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