songle-song-uri-parser 1.1.7 → 1.1.8
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/CHANGELOG.md +25 -11
- data/Gemfile.lock +1 -4
- data/LICENSE.txt +1 -1
- data/README.md +6 -4
- data/lib/songle-song-uri-parser/version.rb +1 -1
- data/songle-song-uri-parser.gemspec +10 -2
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0045b4cf8d0aca35d4be4c619bdcd6d84b522bfc7a4a079553ae71f6178dc8ab
|
4
|
+
data.tar.gz: 1dd6c2f680eb6fa5145cebd1b66fff3ffe14fd3e28451e8f5a58ece293356c55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b30d0dcb30c9755850a4718b8d91fe61dc6febe78cb7365478adbb382a7f6da3095da606ed55dcccdeaa314392e9d25bce50af8b9d6f5047b8ae39ca8057197
|
7
|
+
data.tar.gz: 05fdf22000e90e912a98ff0631c976bc98e2280e9b4f4e43c538ee22820203dcd14c801163357f4e108ad2e6f86ec5f8327cc0624a4dcc40aa51ba52ca88c7f7
|
data/CHANGELOG.md
CHANGED
@@ -1,31 +1,45 @@
|
|
1
1
|
# CHANGELOG.md
|
2
2
|
|
3
|
+
## v1.1.8 (2020-03-13 JST)
|
4
|
+
|
5
|
+
- [Improved] Updated the `README.md`
|
6
|
+
|
3
7
|
## v1.1.7 (2020-03-02 JST)
|
4
|
-
|
8
|
+
|
9
|
+
- [Merged] https://github.com/hinata/songle-song-uri-parser/pull/1
|
5
10
|
|
6
11
|
## v1.1.6 (2019-07-27 JST)
|
7
|
-
|
12
|
+
|
13
|
+
- [Fixed] When the Song URI included white-spaces, it couldn't parse correctly
|
14
|
+
- e.g. https://he3.magnatune.com/all/05-Goodbye%20Perfectionist-Linda%20Woods.mp3
|
8
15
|
|
9
16
|
## v1.1.5 (2019-07-19 JST)
|
10
|
-
|
17
|
+
|
18
|
+
- [Improved] Removed an unused gem
|
11
19
|
|
12
20
|
## v1.1.4 (2019-07-08 JST)
|
13
|
-
|
14
|
-
- Supported the private
|
21
|
+
|
22
|
+
- [Improved] Supported the private Song URI
|
23
|
+
- e.g. https://songle.jp/uploads/{ID}.mp3
|
15
24
|
|
16
25
|
## v1.1.3 (2019-02-06 JST)
|
17
|
-
|
26
|
+
|
27
|
+
- [Improved] Updated the `README.md`
|
18
28
|
|
19
29
|
## v1.1.2 (2019-01-31 JST)
|
20
|
-
|
21
|
-
- Improved
|
30
|
+
|
31
|
+
- [Improved] Changed a constructor parameter of the `::Songle::SongURI` class
|
22
32
|
|
23
33
|
## v1.1.1 (2019-01-26 JST)
|
24
|
-
|
34
|
+
|
35
|
+
- [Improved] Changed a constructor parameter of the `::Songle::SongURI` class
|
25
36
|
|
26
37
|
## v1.1.0 (2019-01-25 JST)
|
27
|
-
|
28
|
-
-
|
38
|
+
|
39
|
+
- [Improved] Changed a return value of the `::Songle::SongURI#type` method
|
40
|
+
- [Improved] Supported the numeric Song URI
|
41
|
+
- e.g. https://songle.jp/songs/{ID}
|
29
42
|
|
30
43
|
## v1.0.0 (2019-01-09 JST)
|
44
|
+
|
31
45
|
- Initial public release
|
data/Gemfile.lock
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# Songle Song URI Parser
|
2
2
|
|
3
|
-
|
3
|
+
The Songle Song URI parser is a gem package providing class to handle the Song URI.
|
4
4
|
|
5
|
-
|
5
|
+
## What is Song URI?
|
6
|
+
|
7
|
+
The [Song URI](//songle.jp/songs/staff.aist.go.jp%2Ft.nakano%2Fmusic%2FVocaWatcher.Prologue.Miku.mp3) is an unique ID of the song that is managed by the [Songle](//songle.jp).
|
6
8
|
|
7
9
|
This gem package can parse it.
|
8
10
|
|
@@ -10,7 +12,7 @@ This gem package can parse it.
|
|
10
12
|
|
11
13
|
### Prerequirements
|
12
14
|
|
13
|
-
- ruby >= 2.
|
15
|
+
- ruby >= 2.4
|
14
16
|
|
15
17
|
### Installation
|
16
18
|
|
@@ -35,7 +37,7 @@ p song.to_s #=> "https://songle.jp/songs/staff.aist.go.jp%2Ft.nakano%2Fmusi
|
|
35
37
|
|
36
38
|
### Prerequirements
|
37
39
|
|
38
|
-
- ruby >= 2.
|
40
|
+
- ruby >= 2.4
|
39
41
|
|
40
42
|
Install dependenting gem packages using bundler.
|
41
43
|
|
@@ -9,8 +9,14 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Takahiro INOUE"]
|
10
10
|
spec.email = ["takahiro.inoue@aist.go.jp"]
|
11
11
|
|
12
|
-
spec.summary = %
|
13
|
-
|
12
|
+
spec.summary = %w{
|
13
|
+
The Songle Song URI parser is a gem package providing class to handle the Song URI.
|
14
|
+
}.join(" ")
|
15
|
+
spec.description = %w{
|
16
|
+
The Songle Song URI parser is a gem package providing class to handle the Song URI.
|
17
|
+
The Song URI is an unique ID of the song that is managed by the Songle.
|
18
|
+
This gem package can parse it.
|
19
|
+
}.join(" ")
|
14
20
|
spec.homepage = "https://github.com/hinata/songle-song-uri-parser"
|
15
21
|
spec.license = "MIT"
|
16
22
|
|
@@ -23,6 +29,8 @@ Gem::Specification.new do |spec|
|
|
23
29
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
30
|
spec.require_paths = ["lib"]
|
25
31
|
|
32
|
+
spec.required_ruby_version = "~> 2.4"
|
33
|
+
|
26
34
|
spec.add_development_dependency "bundler"
|
27
35
|
spec.add_development_dependency "rake"
|
28
36
|
spec.add_development_dependency "rspec", "~> 3.0"
|
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.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takahiro INOUE
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,7 +52,9 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description:
|
55
|
+
description: The Songle Song URI parser is a gem package providing class to handle
|
56
|
+
the Song URI. The Song URI is an unique ID of the song that is managed by the Songle.
|
57
|
+
This gem package can parse it.
|
56
58
|
email:
|
57
59
|
- takahiro.inoue@aist.go.jp
|
58
60
|
executables: []
|
@@ -94,9 +96,9 @@ require_paths:
|
|
94
96
|
- lib
|
95
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
96
98
|
requirements:
|
97
|
-
- - "
|
99
|
+
- - "~>"
|
98
100
|
- !ruby/object:Gem::Version
|
99
|
-
version: '
|
101
|
+
version: '2.4'
|
100
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
103
|
requirements:
|
102
104
|
- - ">="
|
@@ -106,5 +108,6 @@ requirements: []
|
|
106
108
|
rubygems_version: 3.1.2
|
107
109
|
signing_key:
|
108
110
|
specification_version: 4
|
109
|
-
summary:
|
111
|
+
summary: The Songle Song URI parser is a gem package providing class to handle the
|
112
|
+
Song URI.
|
110
113
|
test_files: []
|