songle-song-uri-parser 1.1.3 → 1.1.4
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 +4 -4
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -2
- data/Dockerfile +1 -1
- data/Gemfile.lock +8 -8
- data/README.md +2 -2
- data/lib/songle-song-uri-parser.rb +1 -1
- data/lib/songle-song-uri-parser/version.rb +2 -2
- data/lib/songle/song_uri.rb +10 -10
- data/lib/songle/song_uri/invalid_song_uri_error.rb +2 -2
- data/lib/songle/song_uri/mp3_song_uri.rb +8 -8
- data/lib/songle/song_uri/nn_scheme_song_uri.rb +3 -3
- data/lib/songle/song_uri/nn_short_song_uri.rb +3 -3
- data/lib/songle/song_uri/nn_song_uri.rb +4 -4
- data/lib/songle/song_uri/numeric_song_uri.rb +3 -3
- data/lib/songle/song_uri/sc_scheme_song_uri.rb +3 -3
- data/lib/songle/song_uri/sc_song_uri.rb +4 -4
- data/lib/songle/song_uri/yt_scheme_song_uri.rb +3 -3
- data/lib/songle/song_uri/yt_short_song_uri.rb +3 -3
- data/lib/songle/song_uri/yt_song_uri.rb +4 -4
- data/songle-song-uri-parser.gemspec +3 -3
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 388cb8181670bfbead32c915b52db458cd301562ab0f725027a71b5084996f8a
|
4
|
+
data.tar.gz: 3005daf63382239a9f9e5215311848bc0f376281cdf87b5de79d9787930473b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83f9a0db6c25017edf52a3fa235398b0df23670008c776798caa052bd7a0672f58511ff7975833566aa3e3f1fba6e4f5562fd8ee10c53826af1b1b5b6057c99b
|
7
|
+
data.tar.gz: 843e9555670e12f4e534497a952cc594d7e1de81d1e5b1dae16fb8dd38134bcf9c85b10723d2a79c228f93f00e2f7249390b005cf8feb55ff50885f0b3caf525
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.6.
|
1
|
+
2.6.3
|
data/CHANGELOG.md
CHANGED
@@ -1,18 +1,22 @@
|
|
1
1
|
# CHANGELOG.md
|
2
2
|
|
3
|
+
## v1.1.4 (2019-07-08)
|
4
|
+
- Fixed minor bugs
|
5
|
+
- Supported the private song URI (e.g. "https://songle.jp/uploads/{ID}.mp3")
|
6
|
+
|
3
7
|
## v1.1.3 (2019-02-06)
|
4
8
|
- Updated README.md
|
5
9
|
|
6
10
|
## v1.1.2 (2019-01-31)
|
7
11
|
- Changed constractor parameters in `::Songle::SongURI` class
|
8
|
-
- Improved about loading
|
12
|
+
- Improved about the loading modules
|
9
13
|
|
10
14
|
## v1.1.1 (2019-01-26)
|
11
15
|
- Improved validation in constractor parameters
|
12
16
|
|
13
17
|
## v1.1.0 (2019-01-25)
|
14
18
|
- Changed return value of `Songle::SongURI#type` method (e.g. from "yt" to "youtube")
|
15
|
-
- Supported to the numeric
|
19
|
+
- Supported to the numeric URI (e.g. "https://songle.jp/songs/12345")
|
16
20
|
|
17
21
|
## v1.0.0 (2019-01-09)
|
18
22
|
- Initial public release
|
data/Dockerfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
songle-song-uri-parser (1.1.
|
4
|
+
songle-song-uri-parser (1.1.4)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -12,23 +12,23 @@ GEM
|
|
12
12
|
rspec-core (~> 3.8.0)
|
13
13
|
rspec-expectations (~> 3.8.0)
|
14
14
|
rspec-mocks (~> 3.8.0)
|
15
|
-
rspec-core (3.8.
|
15
|
+
rspec-core (3.8.2)
|
16
16
|
rspec-support (~> 3.8.0)
|
17
|
-
rspec-expectations (3.8.
|
17
|
+
rspec-expectations (3.8.4)
|
18
18
|
diff-lcs (>= 1.2.0, < 2.0)
|
19
19
|
rspec-support (~> 3.8.0)
|
20
|
-
rspec-mocks (3.8.
|
20
|
+
rspec-mocks (3.8.1)
|
21
21
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
22
|
rspec-support (~> 3.8.0)
|
23
|
-
rspec-support (3.8.
|
23
|
+
rspec-support (3.8.2)
|
24
24
|
|
25
25
|
PLATFORMS
|
26
26
|
ruby
|
27
27
|
|
28
28
|
DEPENDENCIES
|
29
|
-
bundler (~> 1
|
30
|
-
rake (~> 10
|
31
|
-
rspec (~> 3
|
29
|
+
bundler (~> 1)
|
30
|
+
rake (~> 10)
|
31
|
+
rspec (~> 3)
|
32
32
|
songle-song-uri-parser!
|
33
33
|
|
34
34
|
BUNDLED WITH
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ This gem package can parse it.
|
|
10
10
|
|
11
11
|
### Prerequirements
|
12
12
|
|
13
|
-
- ruby 2.
|
13
|
+
- ruby >= 2.3
|
14
14
|
|
15
15
|
### Installation
|
16
16
|
|
@@ -35,7 +35,7 @@ p song.to_s #=> "https://songle.jp/songs/staff.aist.go.jp%2Ft.nakano%2Fmusi
|
|
35
35
|
|
36
36
|
### Prerequirements
|
37
37
|
|
38
|
-
- ruby 2.
|
38
|
+
- ruby >= 2.3
|
39
39
|
|
40
40
|
Install dependenting gem packages using bundler.
|
41
41
|
|
data/lib/songle/song_uri.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle
|
3
3
|
module SongURI
|
4
4
|
attr_reader :endpoint_scheme
|
@@ -83,23 +83,23 @@ module ::Songle
|
|
83
83
|
::URI.decode_www_form_component(query_string.to_s)
|
84
84
|
|
85
85
|
case
|
86
|
-
when query_string =~ ::Songle::SongURI::NnSongURI::
|
86
|
+
when query_string =~ ::Songle::SongURI::NnSongURI::URI_REGEXP
|
87
87
|
return ::Songle::SongURI::NnSongURI.new(query_string, options)
|
88
|
-
when query_string =~ ::Songle::SongURI::NnSchemeSongURI::
|
88
|
+
when query_string =~ ::Songle::SongURI::NnSchemeSongURI::URI_REGEXP
|
89
89
|
return ::Songle::SongURI::NnSchemeSongURI.new(query_string, options)
|
90
|
-
when query_string =~ ::Songle::SongURI::NnShortSongURI::
|
90
|
+
when query_string =~ ::Songle::SongURI::NnShortSongURI::URI_REGEXP
|
91
91
|
return ::Songle::SongURI::NnShortSongURI.new(query_string, options)
|
92
|
-
when query_string =~ ::Songle::SongURI::ScSongURI::
|
92
|
+
when query_string =~ ::Songle::SongURI::ScSongURI::URI_REGEXP
|
93
93
|
return ::Songle::SongURI::ScSongURI.new(query_string, options)
|
94
|
-
when query_string =~ ::Songle::SongURI::ScSchemeSongURI::
|
94
|
+
when query_string =~ ::Songle::SongURI::ScSchemeSongURI::URI_REGEXP
|
95
95
|
return ::Songle::SongURI::ScSchemeSongURI.new(query_string, options)
|
96
|
-
when query_string =~ ::Songle::SongURI::YtSongURI::
|
96
|
+
when query_string =~ ::Songle::SongURI::YtSongURI::URI_REGEXP
|
97
97
|
return ::Songle::SongURI::YtSongURI.new(query_string, options)
|
98
|
-
when query_string =~ ::Songle::SongURI::YtSchemeSongURI::
|
98
|
+
when query_string =~ ::Songle::SongURI::YtSchemeSongURI::URI_REGEXP
|
99
99
|
return ::Songle::SongURI::YtSchemeSongURI.new(query_string, options)
|
100
|
-
when query_string =~ ::Songle::SongURI::YtShortSongURI::
|
100
|
+
when query_string =~ ::Songle::SongURI::YtShortSongURI::URI_REGEXP
|
101
101
|
return ::Songle::SongURI::YtShortSongURI.new(query_string, options)
|
102
|
-
when query_string =~ ::Songle::SongURI::NumericSongURI::
|
102
|
+
when query_string =~ ::Songle::SongURI::NumericSongURI::URI_REGEXP
|
103
103
|
return ::Songle::SongURI::NumericSongURI.new(query_string, options)
|
104
104
|
else
|
105
105
|
return ::Songle::SongURI::Mp3SongURI.new(query_string, options)
|
@@ -1,11 +1,11 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class InvalidSongURIError < ::StandardError
|
4
4
|
##
|
5
5
|
# @constructor
|
6
6
|
#
|
7
7
|
def initialize query_string
|
8
|
-
super("'#{ query_string }'
|
8
|
+
super("'#{ query_string }' is invalid songle's song uri.")
|
9
9
|
end
|
10
10
|
end
|
11
11
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class Mp3SongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -11,7 +11,7 @@ module ::Songle::SongURI
|
|
11
11
|
##
|
12
12
|
# @constant
|
13
13
|
#
|
14
|
-
|
14
|
+
URI_REGEXP = /^(\/\/|http(|s):\/\/)(.+)$/
|
15
15
|
|
16
16
|
##
|
17
17
|
# @constructor
|
@@ -19,15 +19,11 @@ module ::Songle::SongURI
|
|
19
19
|
def initialize query_string, options
|
20
20
|
super(options)
|
21
21
|
|
22
|
-
if query_string =~
|
22
|
+
if query_string =~ URI_REGEXP
|
23
23
|
query_string = $3
|
24
24
|
end
|
25
25
|
|
26
|
-
if query_string =~
|
27
|
-
query_string = $1
|
28
|
-
end
|
29
|
-
|
30
|
-
if query_string =~ /^#{ self.endpoint_path }(.+)$/
|
26
|
+
if query_string =~ /#{ self.endpoint_host }#{ self.endpoint_path }(.+)/
|
31
27
|
query_string = $1
|
32
28
|
end
|
33
29
|
|
@@ -37,6 +33,10 @@ module ::Songle::SongURI
|
|
37
33
|
@source_host = source_uri.host
|
38
34
|
@source_path = source_uri.path
|
39
35
|
@source_id = nil
|
36
|
+
|
37
|
+
if source_uri.query
|
38
|
+
@source_path += "?#{ source_uri.query }"
|
39
|
+
end
|
40
40
|
end
|
41
41
|
|
42
42
|
##
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class NnSchemeSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /^nn:\/\/(.+)$/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -31,7 +31,7 @@ module ::Songle::SongURI
|
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
33
|
@source_path = SOURCE_PATH
|
34
|
-
@source_id = $1 if query_string =~
|
34
|
+
@source_id = $1 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class NnShortSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /nico\.ms\/(.+)$/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -31,7 +31,7 @@ module ::Songle::SongURI
|
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
33
|
@source_path = SOURCE_PATH
|
34
|
-
@source_id = $1 if query_string =~
|
34
|
+
@source_id = $1 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class NnSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /#{ SOURCE_HOST.gsub("www.", "") }(#{ SOURCE_PATH.gsub("?", "\\?") }(.+))/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -30,8 +30,8 @@ module ::Songle::SongURI
|
|
30
30
|
super(options)
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
|
-
@source_path = $1 if query_string =~
|
34
|
-
@source_id = $2 if query_string =~
|
33
|
+
@source_path = $1 if query_string =~ URI_REGEXP
|
34
|
+
@source_id = $2 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class NumericSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -11,7 +11,7 @@ module ::Songle::SongURI
|
|
11
11
|
##
|
12
12
|
# @constant
|
13
13
|
#
|
14
|
-
|
14
|
+
URI_REGEXP = /^(|[\w.]+\/[\w.]+\/|\/\/[\w.]+\/[\w.]+\/|http(|s):\/\/[\w.]+\/[\w.]+\/)(\d+)$/
|
15
15
|
|
16
16
|
##
|
17
17
|
# @constructor
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
|
22
22
|
@source_host = nil
|
23
23
|
@source_path = nil
|
24
|
-
@source_id = $3 if query_string =~
|
24
|
+
@source_id = $3 if query_string =~ URI_REGEXP
|
25
25
|
end
|
26
26
|
|
27
27
|
##
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class ScSchemeSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /^sc:\/\/(.+)$/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -31,7 +31,7 @@ module ::Songle::SongURI
|
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
33
|
@source_path = SOURCE_PATH
|
34
|
-
@source_id = $1 if query_string =~
|
34
|
+
@source_id = $1 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class ScSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /#{ SOURCE_HOST.gsub("www.", "") }(#{ SOURCE_PATH.gsub("?", "\\?") }(.+))/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -30,8 +30,8 @@ module ::Songle::SongURI
|
|
30
30
|
super(options)
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
|
-
@source_path = $1 if query_string =~
|
34
|
-
@source_id = $2 if query_string =~
|
33
|
+
@source_path = $1 if query_string =~ URI_REGEXP
|
34
|
+
@source_id = $2 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class YtSchemeSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /^yt:\/\/(.+)$/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -31,7 +31,7 @@ module ::Songle::SongURI
|
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
33
|
@source_path = SOURCE_PATH
|
34
|
-
@source_id = $1 if query_string =~
|
34
|
+
@source_id = $1 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class YtShortSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /youtu\.be\/(.+)$/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -31,7 +31,7 @@ module ::Songle::SongURI
|
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
33
|
@source_path = SOURCE_PATH
|
34
|
-
@source_id = $1 if query_string =~
|
34
|
+
@source_id = $1 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
#@# vim: set filetype=ruby:
|
2
2
|
module ::Songle::SongURI
|
3
3
|
class YtSongURI
|
4
4
|
include ::Songle::SongURI
|
@@ -21,7 +21,7 @@ module ::Songle::SongURI
|
|
21
21
|
##
|
22
22
|
# @constant
|
23
23
|
#
|
24
|
-
|
24
|
+
URI_REGEXP = /#{ SOURCE_HOST.gsub("www.", "") }(#{ SOURCE_PATH.gsub("?", "\\?") }(.+))/
|
25
25
|
|
26
26
|
##
|
27
27
|
# @constructor
|
@@ -30,8 +30,8 @@ module ::Songle::SongURI
|
|
30
30
|
super(options)
|
31
31
|
|
32
32
|
@source_host = SOURCE_HOST
|
33
|
-
@source_path = $1 if query_string =~
|
34
|
-
@source_id = $2 if query_string =~
|
33
|
+
@source_path = $1 if query_string =~ URI_REGEXP
|
34
|
+
@source_id = $2 if query_string =~ URI_REGEXP
|
35
35
|
|
36
36
|
if @source_id.nil? || @source_id.strip.empty?
|
37
37
|
raise ::Songle::SongURI::InvalidSongURIError.new(query_string)
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ["lib"]
|
25
25
|
|
26
|
-
spec.add_development_dependency "bundler", "~> 1
|
27
|
-
spec.add_development_dependency "rake", "~> 10
|
28
|
-
spec.add_development_dependency "rspec", "~> 3
|
26
|
+
spec.add_development_dependency "bundler", "~> 1"
|
27
|
+
spec.add_development_dependency "rake", "~> 10"
|
28
|
+
spec.add_development_dependency "rspec", "~> 3"
|
29
29
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: songle-song-uri-parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takahiro INOUE
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1
|
19
|
+
version: '1'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1
|
26
|
+
version: '1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '10
|
33
|
+
version: '10'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '10
|
40
|
+
version: '10'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '3
|
47
|
+
version: '3'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '3
|
54
|
+
version: '3'
|
55
55
|
description: A Song URI parser for the Songle
|
56
56
|
email:
|
57
57
|
- takahiro.inoue@aist.go.jp
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
- !ruby/object:Gem::Version
|
104
104
|
version: '0'
|
105
105
|
requirements: []
|
106
|
-
rubygems_version: 3.0.
|
106
|
+
rubygems_version: 3.0.3
|
107
107
|
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: A Song URI parser for the Songle
|