xspf2spotify 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 837f2b0f09eaef340e14086fcd3bc41e2fa0a3b9
4
+ data.tar.gz: 8750bdab415bf1eb734891dff597ae3f9a3caa78
5
+ SHA512:
6
+ metadata.gz: 6a1f068a192e4c71c3b3d66d100248b2b16bf6167f2c7a496e4dc2091b702725d94bd6c16556521789b8b93fe9b409aa0a871da7ece0bd0322aceadb91369cf2
7
+ data.tar.gz: 76de91646d9159f16d297426c22c38a33a2cefcdb64a75196cea03e7c3ee316d22dae8c41f61584e21cc8519319b24e81e925fc42e7cf4ffa0f62ab6be9b9565
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ .idea
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.2.4
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at joff@googlehax.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in xspf2spotify.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Joseph Miller
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Xspf2spotify
2
+
3
+ Convert .xspf format playlists to Spotify compatible format, ready for importing
4
+
5
+ ## Installation
6
+
7
+ Install the gem:
8
+
9
+ $ gem install xspf2spotify
10
+
11
+ ## Usage
12
+
13
+ xspf2spotify playlist.xspf > spotifylist.txt
14
+
15
+ You can then copy the contents of the spotifylist.txt into your clipboard (on OSX you can pipe directly to `pbcopy`) and paste it directly into the Spotify desktop app.
16
+
17
+ ## Development
18
+
19
+ After checking out the repo, run `bunde install` to install dependencies. Then, run `rspec` to run the tests.
20
+
21
+
22
+ ## Contributing
23
+
24
+ Bug reports and pull requests are welcome on GitHub at https://github.com/joffotron/xspf2spotify.
25
+ This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
26
+ the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
27
+
28
+
29
+ ## License
30
+
31
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/xspf2spotify ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'xspf2spotify'
4
+ Xspf2spotify::App.run!
@@ -0,0 +1,29 @@
1
+ require 'xspf2spotify/parser'
2
+ require 'xspf2spotify/generator'
3
+ require 'uri'
4
+
5
+ module Xspf2spotify
6
+ class App
7
+
8
+ def self.run!
9
+ if ARGV[0].nil?
10
+ puts 'Please supply the .xspf file as the first argument'
11
+ exit 1
12
+ end
13
+
14
+ filename = ARGV.fetch(0)
15
+ input_file = File.read(filename)
16
+
17
+ stream = Parser.parse(input_file)
18
+ STDERR.puts "Generating playlist: #{stream.title}"
19
+ STDERR.puts '------------------------------------'
20
+
21
+ Generator.new(stream).songs.each { |link| puts link }
22
+ STDERR.puts ' DONE '
23
+ STDERR.puts '------------------------------------'
24
+
25
+ end
26
+
27
+ end
28
+ end
29
+
@@ -0,0 +1,25 @@
1
+ module Xspf2spotify
2
+
3
+ class Generator
4
+
5
+ def initialize(stream)
6
+ @stream = stream
7
+ end
8
+
9
+ def songs
10
+ spotify_songs = []
11
+ @stream.locations.each do |location|
12
+ spotify_songs << spotify_link(location)
13
+ end
14
+ spotify_songs
15
+ end
16
+
17
+ private
18
+
19
+ def spotify_link(location)
20
+ URI.unescape(location[/:(spotify.*)\?sid.*$/, 1])
21
+ end
22
+
23
+ end
24
+
25
+ end
@@ -0,0 +1,12 @@
1
+ require 'sax-machine'
2
+
3
+ module Xspf2spotify
4
+
5
+ class Parser
6
+ include SAXMachine
7
+ element :title
8
+
9
+ elements :location, as: :locations
10
+ end
11
+
12
+ end
@@ -0,0 +1,3 @@
1
+ module Xspf2spotify
2
+ VERSION = '0.1.0'
3
+ end
data/spotify_list ADDED
@@ -0,0 +1,144 @@
1
+ spotify:track:4S7okqiTCIeIH2G8dOi9k9
2
+ spotify:track:4dzp8GRpioWBDVABY2JI42
3
+ spotify:track:4Z98435mopNhhObg4MJ5Jf
4
+ spotify:track:4lxIVVC29faT3iIb1uEI4Y
5
+ spotify:track:6n9NIxMa67H5WCAWwLcV1J
6
+ spotify:track:0QaWTHVVZq8L6hYEkKsnN3
7
+ spotify:track:1a6d3j3lDbmTvhczhiBHX3
8
+ spotify:track:1wbRWEhOQj7FgV77F0Zdkx
9
+ spotify:track:46jNNisjr8iE3jkNtrtWFl
10
+ spotify:track:1PyPK82Vd79mBJcuqA4Dv1
11
+ spotify:track:5cUfOPJWBUoKacAEjHCN9r
12
+ spotify:track:3Yry8NsAywZbFD3U3PLHj7
13
+ spotify:track:1JhAt4FmhLKj0Z5QpsadNa
14
+ spotify:track:5UsvkHvUfyS2J2vPuVlRC8
15
+ spotify:track:6Jc09PwLzv5QCPImvXCa2z
16
+ spotify:track:2rUnScJ0Vc45Ol1A6prpUe
17
+ spotify:track:6dT6nC1IxBPBF71t4IFm5G
18
+ spotify:track:2gFBh7NnEfSeBoZZDB5d2C
19
+ spotify:track:2bdh8ALxBeuvpnuoh37BDn
20
+ spotify:track:2AUrAaW9qCHxy4d1jOEQxJ
21
+ spotify:track:2ndWbjiiNBEOrlfToKlABE
22
+ spotify:track:5zoJpoGXbAyDyLUrhXRvrG
23
+ spotify:track:4NdjQ6XglOJnZEvxouse3k
24
+ spotify:track:7oRNU7Tmek0nm2lqyDojoG
25
+ spotify:track:5x6XYbrKzyI29Efbm2OklA
26
+ spotify:track:41pf5O2myuL4DlcZLP9vFN
27
+ spotify:track:5O2lGWjYCDkhUpWgL4A2x0
28
+ spotify:track:4ZFhQCTVhCn3HCqFaUKM2a
29
+ spotify:track:4VNHnC1XyVUOIiVY49YASO
30
+ spotify:track:5nHq2pxO2MUR11M7RMhOj0
31
+ spotify:track:3CpT3AAU3n9KUkUcGdjeBf
32
+ spotify:track:1jO5kYMz6I9skWKu8Q9iS7
33
+ spotify:track:5gGY8PCBEjxQLPt2PCjA7N
34
+ spotify:track:4ZcLSUvzEIxmu0pu9fJ60l
35
+ spotify:track:6PAxiOKmXJVg75mB6Q0fJ4
36
+ spotify:track:6MY1xABxoZATrEr4FeUhEM
37
+ spotify:track:40kL0rQpgAULbZPHlO4qnS
38
+ spotify:track:0JOEUtDjC2adwFfl3gXPWv
39
+ spotify:track:1MHXTAtfqlRNkGv5g6Ca6q
40
+ spotify:track:0kb10fZdI2pvDKY3zc0Gs1
41
+ spotify:track:4DFXQvUXDFuaUtqb9WXjvm
42
+ spotify:track:45OfPYbQJEMq0kvKY5Yk4u
43
+ spotify:track:3UiVmyoYt8JrjLgn3U7ijH
44
+ spotify:track:4fpEuKIzTLmMJnYwFU0oqr
45
+ spotify:track:18TnUUkpaeoOLdPclt3sPM
46
+ spotify:track:75MKpXflOeHGg4P2NedpOE
47
+ spotify:track:1jKvrkkZxtQ7ZDiXdITOis
48
+ spotify:track:0uSAlUbsfQEneSeTSJcbfm
49
+ spotify:track:3X81q4lql6d2j7TFKqByWr
50
+ spotify:track:790rmIdTqZyveIg9V2Q81S
51
+ spotify:track:6fqmR9xl6JxDPwoExJRAb0
52
+ spotify:track:78FkESh9pisEbUs25nlvh2
53
+ spotify:track:71ljTUEZJ9hDDbRC3vEkkT
54
+ spotify:track:2KEd7spH7EU1INw5U7Dl1T
55
+ spotify:track:29okqwWfb2iDDHPOLi5XHP
56
+ spotify:track:7yGNPFc5vMk6hQ9m8Ky4XU
57
+ spotify:track:6E51MwmZAoZgCVqhlxQYmz
58
+ spotify:track:70YTYOqur6BT9T29vavN83
59
+ spotify:track:003Ufao43zAKOtUGadBtNT
60
+ spotify:track:7C4q3iDYe1EwGAgXUKKtwU
61
+ spotify:track:41b6pzZcIWyKxeVmqOqkEb
62
+ spotify:track:5TERpOMXdsofvUfjHPx6LW
63
+ spotify:track:5XpDknruTJhFKvvSPOrr7p
64
+ spotify:track:6yWF6Va7pw27Z9MmJhyxwD
65
+ spotify:track:1tA2DDBfMWjgi3YJmciA82
66
+ spotify:track:1ykdPiWKA9nGmFyortFO0T
67
+ spotify:track:6sMEAMIp0J0hFQ5HvIK2wY
68
+ spotify:track:0bItYi2im2MAuI3MgbA7GQ
69
+ spotify:track:0hVEAuECbs1axqx7sIfe5L
70
+ spotify:track:7zWfcA1AiANMOwd95ACXvN
71
+ spotify:track:07Rr8iLTbE4lV0dLTV1uwS
72
+ spotify:track:4olGfV1599grGxS1mDeh5C
73
+ spotify:track:2CINrkPbwEWt2bWSsh7wrY
74
+ spotify:track:2dJLYIv8KjwM12eiMQhchR
75
+ spotify:track:6Adtsxq17euZxSHFL3Wucb
76
+ spotify:track:5TiMnjmkMV7whW0RasFGsw
77
+ spotify:track:2FWCPlsYs5DksEsy1wk1TD
78
+ spotify:track:4NV7NAxL8gqaJ2koN7eyRL
79
+ spotify:track:34Jj1FuFqxgtqY178ZpPw3
80
+ spotify:track:7uFBdphGcU7LH1KJbHtP2J
81
+ spotify:track:4kWCfq4ynQQlAr1WB9noEt
82
+ spotify:track:6Zi02ckNpzHf0rz4DV3xdq
83
+ spotify:track:2X4o9Tyc3l20pIeHBD3A7y
84
+ spotify:track:3VUAI1MIQcYWotle8ZMPQ6
85
+ spotify:track:3W41AkDNczihx5CAlppkIM
86
+ spotify:track:4Sfa7hdVkqlM8UW5LsSY3F
87
+ spotify:track:6ooluO7DiEhI1zmK94nRCM
88
+ spotify:track:6AYrHFx4DQxdUQeSmAzNYr
89
+ spotify:track:4P73ZBrXOmsZA6WXsuxUC1
90
+ spotify:track:5quxrZTYgMATSD8ocr0den
91
+ spotify:track:0ZRpZMW2kl3b52w9dn2oUM
92
+ spotify:track:4yYvWFUWMaKMXtoJKJnmZk
93
+ spotify:track:7uvYp5crr7lPh9T4zyMHfQ
94
+ spotify:track:0Nk7bSn0MItonkR0GNs3mj
95
+ spotify:track:5L16tlSHNt93RiiRiCc8ya
96
+ spotify:track:1fzJyTCKeZuTSLByCsLRHl
97
+ spotify:track:3QzbEvmnuZIONNv82PylZb
98
+ spotify:track:7u0tAdK3iCBnDd68XLGzK3
99
+ spotify:track:4Xv41B0BJRcMBJYpavNDfD
100
+ spotify:track:7Ik1qCkU5NIeBNFzoehjix
101
+ spotify:track:3FtYbEfBqAlGO46NUDQSAt
102
+ spotify:track:0j2LFvCJV4ZvIu1dB723Lc
103
+ spotify:track:7ti4qMC7xYQeh1uRzj5XuM
104
+ spotify:track:2jLjVXkSJmMprZpIV4gXLN
105
+ spotify:track:126TblwXGNTUZ7RPMnThkU
106
+ spotify:track:3JPFplry8puxpwqQab9oBB
107
+ spotify:track:0N6Bxsif1tT4vHz8tnkjzP
108
+ spotify:track:5BxVRqpZi6tIhAap1ZjzVD
109
+ spotify:track:4c9WmjVlQMr0s1IjbYO52Z
110
+ spotify:track:4lOTExIbwaF57eYVmNpYr3
111
+ spotify:track:67I8eELvVMS1zfEGfbM0uc
112
+ spotify:track:3LuJPqTyPuVfm9VemXTWHo
113
+ spotify:track:6tAPD6ENgfEY3DKfDaoz1S
114
+ spotify:track:5ENrdEusI0ctiSoFOo8n4S
115
+ spotify:track:2BHLS4ROr2yW26fkYjauNg
116
+ spotify:track:5eX1NUPKABfnF9G12MLdrY
117
+ spotify:track:5aUG1uGIUyehIJhT9ZgHU2
118
+ spotify:track:0TCeMX3ZxLZkAIAw1amrsx
119
+ spotify:track:6u8IvwMTqhjkj2qeFUK2GD
120
+ spotify:track:6Je5Vjd8VXVpQYcOiav5KU
121
+ spotify:track:1wJXQ0ZIxReHr3jQyAinQn
122
+ spotify:track:4fazeTpTqcao38J8Zro9Pg
123
+ spotify:track:3CBV0hbRVn5VniWCXnVERG
124
+ spotify:track:0FfDuyyJJftfw6gBqxcod2
125
+ spotify:track:3c7vquF4xacCmFrxztLUVH
126
+ spotify:track:6B8bVMZOT6UtyxBGWZu0BP
127
+ spotify:track:3V6klywcJI08hbVME9kHUr
128
+ spotify:track:5Lc0xumeKOqB0fuB2wfS7P
129
+ spotify:track:4abCBV5LmLKSrmtSZ1Dz4V
130
+ spotify:track:1oHXby8fROjrhlHlVHbH1o
131
+ spotify:track:3XoChkqo7Pi8UPEY8aMP5R
132
+ spotify:track:3gbBpTdY8lnQwqxNCcf795
133
+ spotify:track:1WaLaeSKwWJyNt1SIOBg3I
134
+ spotify:track:3XfuU4mSroyYNk14D0EfaE
135
+ spotify:track:630lUsC2clwbS07hCe76f3
136
+ spotify:track:21mECqLKwEjbf5aEOvFMqK
137
+ spotify:track:58ZxxTUnEHvhdNNZAkcZTN
138
+ spotify:track:6D43oUO6nImERk2psfXdNY
139
+ spotify:track:3nCkURI30dSOA2ibF493nf
140
+ spotify:track:1pNBa7HEhmKmrxjY2ejPRq
141
+ spotify:track:43lUvtT5PYmRPtB4lqTX1K
142
+ spotify:track:1CKtxKqyFsFITCH4SpDrWj
143
+ spotify:track:0hqh8M4ttzlNsQYHlIeEhr
144
+ spotify:track:7aLR2HTmta1SdMJSOoKJER
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'xspf2spotify/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'xspf2spotify'
8
+ spec.version = Xspf2spotify::VERSION
9
+ spec.authors = ['Joseph Miller']
10
+ spec.email = ['joff@joff.codes']
11
+
12
+ spec.summary = %q{Convert .xspf format playlists to Spotify compatible format, ready for importings}
13
+ spec.homepage = 'https://github.com/joffotron/xspf2spotify'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = 'exe'
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.11'
22
+ spec.add_development_dependency 'rake', '~> 10.0'
23
+ spec.add_development_dependency 'rspec', '~> 3.0'
24
+
25
+ spec.add_runtime_dependency 'ox'
26
+ spec.add_runtime_dependency 'sax-machine'
27
+ end
metadata ADDED
@@ -0,0 +1,129 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xspf2spotify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Joseph Miller
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-01-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: ox
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sax-machine
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description:
84
+ email:
85
+ - joff@joff.codes
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".ruby-version"
93
+ - CODE_OF_CONDUCT.md
94
+ - Gemfile
95
+ - LICENSE.txt
96
+ - README.md
97
+ - Rakefile
98
+ - bin/xspf2spotify
99
+ - lib/xspf2spotify.rb
100
+ - lib/xspf2spotify/generator.rb
101
+ - lib/xspf2spotify/parser.rb
102
+ - lib/xspf2spotify/version.rb
103
+ - spotify_list
104
+ - xspf2spotify.gemspec
105
+ homepage: https://github.com/joffotron/xspf2spotify
106
+ licenses:
107
+ - MIT
108
+ metadata: {}
109
+ post_install_message:
110
+ rdoc_options: []
111
+ require_paths:
112
+ - lib
113
+ required_ruby_version: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ required_rubygems_version: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ requirements: []
124
+ rubyforge_project:
125
+ rubygems_version: 2.4.5.1
126
+ signing_key:
127
+ specification_version: 4
128
+ summary: Convert .xspf format playlists to Spotify compatible format, ready for importings
129
+ test_files: []