Sha256: 316c91977de2637d0dcfad663d8940b1604d8cee65b7e3d194a7803d0893dcd0

Contents?: true

Size: 222 Bytes

Versions: 1

Compression:

Stored size: 222 Bytes

Contents

module Songkickr
  class Artist
    attr_accessor :href, :display_name
    
    def initialize(artist_hash = {})
      @href         = artist_hash["href"]
      @display_name = artist_hash["displayName"]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
songkickr-0.1.0 lib/songkickr/artist.rb