iso-bib-item 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96383163b355abde118e93a48314f7327dfcef8a7db1cef4b9d337215603abf4
4
- data.tar.gz: acf207d7085d86cb08c0141676a6422db82a1cd952de58cbf16b744dc94cb1f1
3
+ metadata.gz: 4ae2b39dbf95400893806d73fb3f395b51d365bc4c8fe97c6f07794e0faa993b
4
+ data.tar.gz: 77d3006345ebec0522b6594b184893784ed448df28e0cb591ca0334c330b9351
5
5
  SHA512:
6
- metadata.gz: 7d9fca95ab51c0e0f4ce481f22bafd509e0904bdd62a95faac19c6638b7f9301f4b6a15d0b4e384b13ef2c4523d008f829f2767727095f936cac69df8eaa0b3f
7
- data.tar.gz: '068aeb767e3adff4f0c07d8202626b534590960ac2aed160e9bebe260e8a939ea283b4abaae85ad694549baace82c732e01aaa258742295ed50a176c83c0a78d'
6
+ metadata.gz: e2c57e2c286f7bb66cdf797e66ad27620f8796a04e505d0105c59097d12df39c83f66bbeb21e97d3a5fd25310e63be860fe9d544dfb35b3edf21d7a878971176
7
+ data.tar.gz: 64458e12f087b7ec84d23bc5fe5363f75b8b6e070cfc2cff0c5a246a2c9920d254ec9eabc8066da5f3039c090f9040afef369bfe25da8a0d8be40c0cc916c488
@@ -0,0 +1,3 @@
1
+ ruby:
2
+ Enabled: true
3
+ config_file: .rubocop.yml
@@ -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.4.0
3
- Metrics/BlockLength:
4
- ExcludedMethods: ['describe', 'context', 'it', 'let']
5
- Style/Encoding:
6
- Exclude:
7
- - 'spec/**/*.rb'
8
+ TargetRubyVersion: 2.3
9
+ Rails:
10
+ Enabled: true
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- iso-bib-item (0.4.2)
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.0)
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.11.3)
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.16.6
64
+ 1.17.1
@@ -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/gdbib'
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|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: false
2
2
 
3
3
  module IsoBibItem
4
- VERSION = '0.4.2'.freeze
4
+ VERSION = '0.4.3'.freeze
5
5
  end
@@ -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? titl[1]
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.2
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-10-26 00:00:00.000000000 Z
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/gdbib
177
+ homepage: https://github.com/riboseinc/iso-bib-item
177
178
  licenses:
178
179
  - BSD-2-Clause
179
180
  metadata: {}