discid 1.3.0 → 1.3.1
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/CHANGES.md +3 -0
- data/README.md +1 -1
- data/lib/discid/version.rb +1 -1
- data/test/helper.rb +2 -2
- data/test/test_disc.rb +1 -1
- data/test/test_discid.rb +1 -1
- data/test/test_track.rb +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f441af810cb786ff29ca6a8ce97f563feb671071
|
|
4
|
+
data.tar.gz: 7d8a7cb27691858ce104aa9ff5fcb725bca28284
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45d18463877605ece3ed62e5f33d1a8ba2540e5a8e7546d462690d22b3d38fd2e6720cc7d468d0d01c854c5a49421c22ccc2bbb33989334debb5a96bf0fc086d
|
|
7
|
+
data.tar.gz: 3d20253983f3aa7df9a97244f8f4bd80b15a0f2dce6de1359958c1320f5df24125f68e13c9833152581ade6fba22500e45a264bb4fdc09ba4126fa4ae72b594c
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
|
@@ -112,7 +112,7 @@ Please report any issues on the
|
|
|
112
112
|
[issue tracker](https://github.com/phw/ruby-discid/issues).
|
|
113
113
|
|
|
114
114
|
## License
|
|
115
|
-
ruby-discid Copyright (c) 2007-
|
|
115
|
+
ruby-discid Copyright (c) 2007-2017 by Philipp Wolfer <ph.wolfer@gmail.com>
|
|
116
116
|
|
|
117
117
|
ruby-discid is free software: you can redistribute it and/or modify
|
|
118
118
|
it under the terms of the GNU Lesser General Public License as published by
|
data/lib/discid/version.rb
CHANGED
data/test/helper.rb
CHANGED
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
16
|
begin
|
|
17
|
-
require '
|
|
17
|
+
require 'simplecov'
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
SimpleCov.start do
|
|
20
20
|
add_filter "/test/"
|
|
21
21
|
end
|
|
22
22
|
rescue LoadError
|
data/test/test_disc.rb
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
# You should have received a copy of the GNU Lesser General Public License
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
|
+
require_relative 'helper'
|
|
16
17
|
require 'test/unit'
|
|
17
18
|
require 'discid'
|
|
18
|
-
require_relative 'helper'
|
|
19
19
|
|
|
20
20
|
# Unit test for the DiscId::Disc class.
|
|
21
21
|
class TestDisc < Test::Unit::TestCase
|
data/test/test_discid.rb
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
# You should have received a copy of the GNU Lesser General Public License
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
|
+
require_relative 'helper'
|
|
16
17
|
require 'test/unit'
|
|
17
18
|
require 'discid'
|
|
18
|
-
require_relative 'helper'
|
|
19
19
|
|
|
20
20
|
# Helper class which can't be converted into a string.
|
|
21
21
|
class NotAString
|
data/test/test_track.rb
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
# You should have received a copy of the GNU Lesser General Public License
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
|
+
require_relative 'helper'
|
|
16
17
|
require 'test/unit'
|
|
17
18
|
require 'discid/track'
|
|
18
|
-
require_relative 'helper'
|
|
19
19
|
|
|
20
20
|
# Unit test for the DiscId::Track class.
|
|
21
21
|
class TestTrack < Test::Unit::TestCase
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: discid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Philipp Wolfer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -95,7 +95,7 @@ dependencies:
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
98
|
+
name: simplecov
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - ">="
|
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
156
156
|
requirements:
|
|
157
157
|
- libdiscid >= 0.1.0
|
|
158
158
|
rubyforge_project:
|
|
159
|
-
rubygems_version: 2.
|
|
159
|
+
rubygems_version: 2.4.8
|
|
160
160
|
signing_key:
|
|
161
161
|
specification_version: 4
|
|
162
162
|
summary: Ruby bindings for libdiscid
|
|
@@ -165,4 +165,3 @@ test_files:
|
|
|
165
165
|
- test/test_disc.rb
|
|
166
166
|
- test/test_discid.rb
|
|
167
167
|
- test/test_track.rb
|
|
168
|
-
has_rdoc:
|