Sha256: 45408d835d722ea8ec12dfff23df7fb9325024ebe7f8c80fb38351c63bba711a

Contents?: true

Size: 372 Bytes

Versions: 7

Compression:

Stored size: 372 Bytes

Contents

module Songkickr
  # A class to represent the result hash of an Setlist search.
  #
  # http://www.songkick.com/developer/setlists
  class ConcertSetlistResult < ResultSet
    # Takes the result ash and passes it to parse_results
    def initialize(result_hash = {})
      @result_type       = "Setlist"
      @result_key_string = "setlist"

      super
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

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