Sha256: 1d869a1e1a2d4f7b4e966240cc7848b4edda21661eaa5919152df22ef18d24ac

Contents?: true

Size: 195 Bytes

Versions: 3

Compression:

Stored size: 195 Bytes

Contents

module SpotifyToMp3
  class Spotify
    class Track
      attr_reader :artist, :name

      def initialize(artist, name)
        @artist = artist
        @name = name
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spotify-to-mp3-0.7.2 lib/spotify_to_mp3/spotify/track.rb
spotify-to-mp3-0.7.1 lib/spotify_to_mp3/spotify/track.rb
spotify-to-mp3-0.7.0 lib/spotify_to_mp3/spotify/track.rb