Sha256: abc5a158aa4d98d056fa52e1e9acfb1cc6aa1bfe95f6508efd78296dd55546f6

Contents?: true

Size: 402 Bytes

Versions: 7

Compression:

Stored size: 402 Bytes

Contents

module Songkickr
  # A class to represent the result hash of an Artist search.
  class ArtistResult < ResultSet
    # Takes the result hash directly and parses out the page and total entries and finally passes off to the parse_results method to get the results.
    def initialize(result_hash = {})
      @result_type       = "Artist"
      @result_key_string = "artist"

      super
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
songkickr-0.5.5 lib/songkickr/artist_result.rb
songkickr-0.5.4 lib/songkickr/artist_result.rb
songkickr-0.5.3 lib/songkickr/artist_result.rb
songkickr-0.5.2 lib/songkickr/artist_result.rb
songkickr-0.5.0 lib/songkickr/artist_result.rb
songkickr-0.4.1 lib/songkickr/artist_result.rb
songkickr-0.4.0 lib/songkickr/artist_result.rb