relaton-bib 1.12.2 → 1.12.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: ebde20c82020f6add84d243549e0300e43a92f3702173f646df61c10c8dab27a
4
- data.tar.gz: 6a4a26a79f56851700b37d5ded69b9a9b2eb69192d2f04efccb9a2ee56c7b2b4
3
+ metadata.gz: 3610adb6319fa59f2a67b10146c3e976c7c827d91df441b504de6534cb285020
4
+ data.tar.gz: 75f324998da686277dee651003ba6bb2e0dea57bcb170e8db0e0566f12a45ca3
5
5
  SHA512:
6
- metadata.gz: d99a477188088aeec02dd56732eb49517ee457186b334833c8fb22a9ea51ac49552fb7c963cc22a4d3230b378904a1603534991718eb620c96016323034ab956
7
- data.tar.gz: cd5006e735cc8ff49b9c6fa910980b947691c14c725259f5843495722f5c0706a82f81d770fc11da2aa899d48654c963d87ec14aa15e5b361068f50fd83df48b
6
+ metadata.gz: 4d732c577746afab2468f58404b93ab207999425ab8f9069589622ea3b89172ed9230390bdb033652440c478ab2b723977ec62064e92ce5202cde0dc753ca3c5
7
+ data.tar.gz: 3ac992c12c4dd00a17314a5f49ea79d82f8a66b1e8707087a2e52c17f863ea547d793f5d429fa2d63024ca6f9b22ce258e35fe55c4bfc4c947a81dcb44bd5209
@@ -56,8 +56,8 @@ module RelatonBib
56
56
  def stage_new(stg)
57
57
  case stg
58
58
  when Stage then stg
59
- when Hash then Stage.new(**stg)
60
- when String then Stage.new(value: stg)
59
+ when Hash then self.class::Stage.new(**stg)
60
+ when String then self.class::Stage.new(value: stg)
61
61
  end
62
62
  end
63
63
 
@@ -12,9 +12,7 @@ module RelatonBib
12
12
 
13
13
  # @param builder [Nokogiri::XML::Builder]
14
14
  def to_xml(builder)
15
- builder.send "technical-committee" do |b|
16
- workgroup.to_xml b
17
- end
15
+ builder.send(:"technical-committee") { |b| workgroup.to_xml b }
18
16
  end
19
17
 
20
18
  # @return [Hash]
@@ -26,7 +24,7 @@ module RelatonBib
26
24
  # @param count [Integer] number of technical committees
27
25
  # @return [String]
28
26
  def to_asciibib(prefix = "", count = 1)
29
- pref = prefix.empty? ? prefix : prefix + "."
27
+ pref = prefix.empty? ? prefix : "#{prefix}."
30
28
  pref += "technical_committee"
31
29
  out = count > 1 ? "#{pref}::\n" : ""
32
30
  out += workgroup.to_asciibib pref
@@ -1,3 +1,3 @@
1
1
  module RelatonBib
2
- VERSION = "1.12.2".freeze
2
+ VERSION = "1.12.3".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-bib
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.2
4
+ version: 1.12.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: 2022-07-19 00:00:00.000000000 Z
11
+ date: 2022-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug