iso-bib-item 0.4.2 → 0.4.3
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/.hound.yml +3 -0
- data/.rubocop.yml +9 -6
- data/Gemfile.lock +4 -4
- data/iso-bib-item.gemspec +1 -1
- data/lib/iso_bib_item/version.rb +1 -1
- data/lib/iso_bib_item/xml_parser.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ae2b39dbf95400893806d73fb3f395b51d365bc4c8fe97c6f07794e0faa993b
|
|
4
|
+
data.tar.gz: 77d3006345ebec0522b6594b184893784ed448df28e0cb591ca0334c330b9351
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2c57e2c286f7bb66cdf797e66ad27620f8796a04e505d0105c59097d12df39c83f66bbeb21e97d3a5fd25310e63be860fe9d544dfb35b3edf21d7a878971176
|
|
7
|
+
data.tar.gz: 64458e12f087b7ec84d23bc5fe5363f75b8b6e070cfc2cff0c5a246a2c9920d254ec9eabc8066da5f3039c090f9040afef369bfe25da8a0d8be40c0cc916c488
|
data/.hound.yml
ADDED
data/.rubocop.yml
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
# This project follows the Ribose OSS style guide.
|
|
2
|
+
# https://github.com/riboseinc/oss-guides
|
|
3
|
+
# All project-specific additions and overrides should be specified in this file.
|
|
4
|
+
|
|
5
|
+
inherit_from:
|
|
6
|
+
- https://raw.githubusercontent.com/riboseinc/oss-guides/master/ci/rubocop.yml
|
|
1
7
|
AllCops:
|
|
2
|
-
TargetRubyVersion: 2.
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Style/Encoding:
|
|
6
|
-
Exclude:
|
|
7
|
-
- 'spec/**/*.rb'
|
|
8
|
+
TargetRubyVersion: 2.3
|
|
9
|
+
Rails:
|
|
10
|
+
Enabled: true
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
iso-bib-item (0.4.
|
|
4
|
+
iso-bib-item (0.4.3)
|
|
5
5
|
isoics (~> 0.1.6)
|
|
6
6
|
nokogiri (~> 1.8.4)
|
|
7
7
|
ruby_deep_clone (~> 0.8.0)
|
|
@@ -17,11 +17,11 @@ GEM
|
|
|
17
17
|
nokogiri (>= 1.4.3)
|
|
18
18
|
isoics (0.1.7)
|
|
19
19
|
json (2.1.0)
|
|
20
|
-
method_source (0.9.
|
|
20
|
+
method_source (0.9.2)
|
|
21
21
|
mini_portile2 (2.3.0)
|
|
22
22
|
nokogiri (1.8.5)
|
|
23
23
|
mini_portile2 (~> 2.3.0)
|
|
24
|
-
pry (0.
|
|
24
|
+
pry (0.12.2)
|
|
25
25
|
coderay (~> 1.1.0)
|
|
26
26
|
method_source (~> 0.9.0)
|
|
27
27
|
pry-byebug (3.6.0)
|
|
@@ -61,4 +61,4 @@ DEPENDENCIES
|
|
|
61
61
|
simplecov
|
|
62
62
|
|
|
63
63
|
BUNDLED WITH
|
|
64
|
-
1.
|
|
64
|
+
1.17.1
|
data/iso-bib-item.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
|
|
13
13
|
spec.summary = %(IsoBibItem: Ruby ISOXMLDOC impementation.)
|
|
14
14
|
spec.description = %(IsoBibItem: Ruby ISOXMLDOC impementation.)
|
|
15
|
-
spec.homepage = 'https://github.com/riboseinc/
|
|
15
|
+
spec.homepage = 'https://github.com/riboseinc/iso-bib-item'
|
|
16
16
|
spec.license = 'BSD-2-Clause'
|
|
17
17
|
|
|
18
18
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
data/lib/iso_bib_item/version.rb
CHANGED
|
@@ -57,7 +57,7 @@ module IsoBibItem
|
|
|
57
57
|
when 1
|
|
58
58
|
intro, main, part = nil, titl[0], nil
|
|
59
59
|
when 2
|
|
60
|
-
if /^(Part|Partie) \d+:/.match
|
|
60
|
+
if /^(Part|Partie) \d+:/.match titl[1]
|
|
61
61
|
intro, main, part = nil, titl[0], titl[1]
|
|
62
62
|
else
|
|
63
63
|
intro, main, part = titl[0], titl[1], nil
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iso-bib-item
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -144,6 +144,7 @@ extensions: []
|
|
|
144
144
|
extra_rdoc_files: []
|
|
145
145
|
files:
|
|
146
146
|
- ".gitignore"
|
|
147
|
+
- ".hound.yml"
|
|
147
148
|
- ".rspec"
|
|
148
149
|
- ".rubocop.yml"
|
|
149
150
|
- ".travis.yml"
|
|
@@ -173,7 +174,7 @@ files:
|
|
|
173
174
|
- lib/iso_bib_item/series.rb
|
|
174
175
|
- lib/iso_bib_item/version.rb
|
|
175
176
|
- lib/iso_bib_item/xml_parser.rb
|
|
176
|
-
homepage: https://github.com/riboseinc/
|
|
177
|
+
homepage: https://github.com/riboseinc/iso-bib-item
|
|
177
178
|
licenses:
|
|
178
179
|
- BSD-2-Clause
|
|
179
180
|
metadata: {}
|