relaton-bipm 1.11.3 → 1.11.4
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/README.adoc +14 -2
- data/lib/relaton_bipm/bipm_bibliography.rb +3 -1
- data/lib/relaton_bipm/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48b49b85ee677df9306a704d0b33a2b90460435ae807c03020e5d101f19cd429
|
|
4
|
+
data.tar.gz: 9d20d295e87eefc521522d45ffa0ae91a47afabba05c976572240cbaa07c362a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37cfcbf1cc3bb77c6fd162fed2580e7844308a8baf1f172ab10c041b6576bedbcb902baf763da699de9b5f32359fbcd5a390a1d482d9793d6e7fd089698c682c
|
|
7
|
+
data.tar.gz: e00b2c77e4fe20599959e855423d3775d3e8992d74240cabb4e01a6e0a0dde7386ff02b5e61a57c6181733fbb11efc40d0cc1a02b578fccdf5ced7d8aa8d9a59
|
data/README.adoc
CHANGED
|
@@ -52,7 +52,7 @@ bib = RelatonBipm::BipmBibliography.get "BIPM Metrologia 29 6 373"
|
|
|
52
52
|
=> #<RelatonBipm::BipmBibliographicItem:0x007f8857f94d40
|
|
53
53
|
...
|
|
54
54
|
|
|
55
|
-
# get CGPM
|
|
55
|
+
# get CGPM meetings
|
|
56
56
|
RelatonBipm::BipmBibliography.get "CGPM Meetings 1"
|
|
57
57
|
[relaton-bipm] ("CGPM Meetings 1") fetching...
|
|
58
58
|
[relaton-bipm] ("CGPM Meetings 1") found CGPM Meetings 1
|
|
@@ -62,7 +62,19 @@ RelatonBipm::BipmBibliography.get "CGPM Meetings 1"
|
|
|
62
62
|
# get CGPM resolutions
|
|
63
63
|
RelatonBipm::BipmBibliography.get "CGPM Resolution 1889-00"
|
|
64
64
|
[relaton-bipm] ("CGPM Resolution 1889-00") fetching...
|
|
65
|
-
[relaton-bipm] ("CGPM Resolution 1889-00") found CGPM Resolution
|
|
65
|
+
[relaton-bipm] ("CGPM Resolution 1889-00") found CGPM Resolution (1889)
|
|
66
|
+
=> #<RelatonBipm::BipmBibliographicItem:0x00007ff0d1ffae50
|
|
67
|
+
...
|
|
68
|
+
|
|
69
|
+
RelatonBipm::BipmBibliography.get "CGPM Resolution (1889)"
|
|
70
|
+
[relaton-bipm] ("CGPM Resolution (1889)") fetching...
|
|
71
|
+
[relaton-bipm] ("CGPM Resolution (1889)") found CGPM Resolution (1889)
|
|
72
|
+
=> #<RelatonBipm::BipmBibliographicItem:0x00007ff0d1ffae50
|
|
73
|
+
...
|
|
74
|
+
|
|
75
|
+
RelatonBipm::BipmBibliography.get "CGPM Resolution 1889"
|
|
76
|
+
[relaton-bipm] ("CGPM Resolution 1889") fetching...
|
|
77
|
+
[relaton-bipm] ("CGPM Resolution 1889") found CGPM Resolution (1889)
|
|
66
78
|
=> #<RelatonBipm::BipmBibliographicItem:0x00007ff0d1ffae50
|
|
67
79
|
...
|
|
68
80
|
|
|
@@ -40,7 +40,9 @@ module RelatonBipm
|
|
|
40
40
|
# @param agent [Mechanize]
|
|
41
41
|
# @return [RelatonBipm::BipmBibliographicItem]
|
|
42
42
|
def get_bipm(ref, agent) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
|
|
43
|
-
rf = ref.sub(/(\d{1,2})\s
|
|
43
|
+
rf = ref.sub(/(?:(\d{1,2})\s)?\(?(\d{4})(?!-)\)?/) do
|
|
44
|
+
"#{$2}-#{$1.to_s.rjust(2, '0')}"
|
|
45
|
+
end
|
|
44
46
|
path_parts = rf.split.map &:downcase
|
|
45
47
|
path_parts.insert(1, "meetings") unless path_parts[1] == "meetings"
|
|
46
48
|
url = "#{GH_ENDPOINT}#{path_parts.join '/'}.yaml"
|
data/lib/relaton_bipm/version.rb
CHANGED