relaton-iso 1.13.1 → 1.13.2

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: f7957abd3baa9506418de82f57fd7bdb8e007bd3db0319a8a4c3ce60620afab2
4
- data.tar.gz: a8757774fbcd0925f911e2e981972304bbdf19fb8f7da18827538edc2c2a1f31
3
+ metadata.gz: d999763ca36d83d0332129d704f5f8989c1c606c2ae0037a8d07ee466a3e046e
4
+ data.tar.gz: 5aa8659bd16f7463f3a4d49f32a748b77c6cdded83dbac7feab12fca2d06c5a5
5
5
  SHA512:
6
- metadata.gz: fe1eb0dc20bb16c7209d0339719ea7ea105e3942e6435231318f5791ebc404dd6aaede200296fbcc4ef545b561a5f9b993a1dd84dc7c6ee9e7e75b0b994a0715
7
- data.tar.gz: 04d922e293b122a75a5d07b0093c62e2a6fde2024c4ce92188d6dbae1a131aafcd7900f897e32309348f1cf7b9ed7be1eefe249f250836b266f1887c5bb26ecd
6
+ metadata.gz: d5ac24c248308871cfe2cc98f28e09401f1ee6c4eee6a399605a3d25c2cc19baa4cf4fa52b76c2b68ca84d8909355d6cc09a118d6a63dbb4e108b473c506f3a2
7
+ data.tar.gz: ece1fa36fe8dd5a8fd9dd2f826ee7c38114ec828f6d1151bd89ceab197623279f8940e33942eb664b6dbc4d44e8aca2d12aa377eb5e5ddcab58ed6d970d0db65
@@ -0,0 +1,22 @@
1
+ # Auto-generated by Cimas: Do not edit it manually!
2
+ # See https://github.com/metanorma/cimas
3
+ name: release
4
+
5
+ on:
6
+ workflow_dispatch:
7
+ inputs:
8
+ next_version:
9
+ description: |
10
+ Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
11
+ required: true
12
+ default: 'skip'
13
+ push:
14
+ tags: [ v* ]
15
+
16
+ jobs:
17
+ release:
18
+ uses: relaton/support/.github/workflows/release.yml@master
19
+ with:
20
+ next_version: ${{ github.event.inputs.next_version }}
21
+ secrets:
22
+ rubygems-api-key: ${{ secrets.RELATON_CI_RUBYGEMS_API_KEY }}
@@ -60,8 +60,8 @@ module RelatonIso
60
60
  doc, url = get_page "#{hit.hit[:path].sub '/sites/isoorg', ''}.html"
61
61
 
62
62
  # Fetch edition.
63
- edition = doc&.xpath("//strong[contains(text(), 'Edition')]/..")
64
- &.children&.last&.text&.match(/\d+/)&.to_s
63
+ edition = doc.at("//div[div[.='Edition']]/text()[last()]")
64
+ &.text&.match(/\d+$/)&.to_s
65
65
  hit.pubid.edition = edition if edition
66
66
 
67
67
  titles, abstract, langs = fetch_titles_abstract(doc, lang)
@@ -239,21 +239,20 @@ module RelatonIso
239
239
  # @param doc [Nokogiri::HTML::Document]
240
240
  # @return [Hash]
241
241
  def fetch_workgroup(doc) # rubocop:disable Metrics/MethodLength,Metrics/AbcSize,Metrics/CyclomaticComplexity
242
- wg_link = doc.css("div.entry-name.entry-block a")[0]
243
- # wg_url = DOMAIN + wg_link['href']
242
+ wg = doc.at("//div[@class='clearfix']")
243
+ wg_link = wg.at "span/a"
244
244
  workgroup = wg_link.text.split "/"
245
245
  type = workgroup[1]&.match(/^[A-Z]+/)&.to_s || "TC"
246
246
  {
247
247
  name: "International Organization for Standardization",
248
248
  abbreviation: "ISO",
249
249
  url: "www.iso.org",
250
- technical_committee: [{
251
- name: doc.css("div.entry-title")[0].text,
252
- identifier: wg_link.text,
253
- type: type,
254
- number: workgroup[1]&.match(/\d+/)&.to_s&.to_i,
255
- }],
256
250
  }
251
+ tc_numb = workgroup[1]&.match(/\d+/)&.to_s&.to_i
252
+ tc_name = wg.at("span[@class='entry-title']").text
253
+ tc = RelatonBib::WorkGroup.new(name: tc_name, identifier: wg_link.text,
254
+ type: type, number: tc_numb)
255
+ RelatonIsoBib::EditorialGroup.new(technical_committee: [tc])
257
256
  end
258
257
 
259
258
  # rubocop:disable Metrics/MethodLength
@@ -266,7 +265,7 @@ module RelatonIso
266
265
  doc.xpath("//ul[@class='steps']/li", "//div[@class='sub-step']").reduce([]) do |a, r|
267
266
  r_type = r.at("h4", "h5").text
268
267
  date = []
269
- type = case r_type
268
+ type = case r_type.strip
270
269
  when "Previously", "Will be replaced by" then "obsoletes"
271
270
  when "Corrigenda / Amendments", "Revised by", "Now confirmed"
272
271
  on = doc.xpath('//span[@class="stage-date"][contains(., "-")]').last
@@ -374,8 +373,7 @@ module RelatonIso
374
373
  # @param doc [Nokogiri::HTML::Document]
375
374
  # @return [Array<Hash>]
376
375
  def fetch_ics(doc)
377
- doc.xpath("//strong[contains(text(), "\
378
- "'ICS')]/../following-sibling::dd/div/a").map do |i|
376
+ doc.xpath("//dl[dt/strong[.='ICS']]/dd/span/a").map do |i|
379
377
  code = i.text.match(/[\d.]+/).to_s.split "."
380
378
  { field: code[0], group: code[1], subgroup: code[2] }
381
379
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RelatonIso
4
- VERSION = "1.13.1"
4
+ VERSION = "1.13.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: relaton-iso
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.1
4
+ version: 1.13.2
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-08-24 00:00:00.000000000 Z
11
+ date: 2022-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug
@@ -215,6 +215,7 @@ extensions: []
215
215
  extra_rdoc_files: []
216
216
  files:
217
217
  - ".github/workflows/rake.yml"
218
+ - ".github/workflows/release.yml"
218
219
  - ".gitignore"
219
220
  - ".hound.yml"
220
221
  - ".rspec"