├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── bin └── spotify-export.rb ├── db └── spotify-cache-template.db ├── lib ├── spotify-cache.rb ├── spotify-playlist.rb └── spotify-track.rb └── spec ├── spec_helper.rb ├── spotify-playlist_spec.rb ├── spotify-track_spec.rb └── support ├── by-track.txt ├── html-entities-track.txt ├── local-track.txt ├── multiple-artist-track.txt ├── multiple-tracks.txt ├── single-track.txt ├── song-link-track.txt └── utf8-track.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/README.md -------------------------------------------------------------------------------- /bin/spotify-export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/bin/spotify-export.rb -------------------------------------------------------------------------------- /db/spotify-cache-template.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/db/spotify-cache-template.db -------------------------------------------------------------------------------- /lib/spotify-cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/lib/spotify-cache.rb -------------------------------------------------------------------------------- /lib/spotify-playlist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/lib/spotify-playlist.rb -------------------------------------------------------------------------------- /lib/spotify-track.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/lib/spotify-track.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spotify-playlist_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/spec/spotify-playlist_spec.rb -------------------------------------------------------------------------------- /spec/spotify-track_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/spec/spotify-track_spec.rb -------------------------------------------------------------------------------- /spec/support/by-track.txt: -------------------------------------------------------------------------------- 1 | spotify:track:59ZIrPBaCOmLrweJOGHZOD 2 | -------------------------------------------------------------------------------- /spec/support/html-entities-track.txt: -------------------------------------------------------------------------------- 1 | spotify:track:3XJrdK0Okwfi7waIcUQkca 2 | -------------------------------------------------------------------------------- /spec/support/local-track.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/spec/support/local-track.txt -------------------------------------------------------------------------------- /spec/support/multiple-artist-track.txt: -------------------------------------------------------------------------------- 1 | spotify:track:225gqtTcsE8cfFtfKNTVjt 2 | -------------------------------------------------------------------------------- /spec/support/multiple-tracks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlund/spotify-export/HEAD/spec/support/multiple-tracks.txt -------------------------------------------------------------------------------- /spec/support/single-track.txt: -------------------------------------------------------------------------------- 1 | spotify:track:5KeyVNymqfqac1wLDseK8v 2 | -------------------------------------------------------------------------------- /spec/support/song-link-track.txt: -------------------------------------------------------------------------------- 1 | https://open.spotify.com/track/47IklCMgkgWvI4jpkdrop0 2 | -------------------------------------------------------------------------------- /spec/support/utf8-track.txt: -------------------------------------------------------------------------------- 1 | spotify:track:03UrZgTINDqvnUMbbIMhql 2 | --------------------------------------------------------------------------------