Module: Bandcamp

Defined in:
lib/bandcamp.rb,
lib/bandcamp/band.rb,
lib/bandcamp/album.rb,
lib/bandcamp/track.rb,
lib/bandcamp/getter.rb,
lib/bandcamp/request.rb,
lib/bandcamp/version.rb,
lib/bandcamp/associated.rb,
lib/bandcamp/methodical.rb,
lib/bandcamp/configuration.rb

Defined Under Namespace

Modules: Associated, Methodical Classes: Album, Band, Configuration, ConfigurationError, Getter, Request, Track, UnknownTypeError

Constant Summary collapse

VERSION =
"0.2.0"

Class Method Summary collapse

Class Method Details

.configObject



9
10
11
# File 'lib/bandcamp.rb', line 9

def self.config
  @configuration ||= Configuration.new
end

.getObject



13
14
15
# File 'lib/bandcamp.rb', line 13

def self.get
  request
end

.resolveObject



21
22
23
# File 'lib/bandcamp.rb', line 21

def self.resolve
  request
end

.search(band_name) ⇒ Object



17
18
19
# File 'lib/bandcamp.rb', line 17

def self.search band_name
  request.search(band_name)
end