relaton-cie 1.8.0 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +1 -11
- data/.rubocop.yml +3 -1
- data/Gemfile +1 -1
- data/README.adoc +28 -0
- data/bin/rspec +29 -0
- data/grammars/basicdoc.rng +26 -7
- data/grammars/biblio.rng +8 -5
- data/grammars/isodoc.rng +686 -96
- data/grammars/reqt.rng +34 -5
- data/lib/relaton_cie/cie_bibliography.rb +1 -1
- data/lib/relaton_cie/data_fetcher.rb +192 -0
- data/lib/relaton_cie/processor.rb +14 -1
- data/lib/relaton_cie/scrapper.rb +2 -2
- data/lib/relaton_cie/version.rb +1 -1
- data/lib/relaton_cie.rb +1 -0
- data/relaton_cie.gemspec +3 -5
- metadata +21 -19
data/grammars/reqt.rng
CHANGED
@@ -58,15 +58,23 @@
|
|
58
58
|
<optional>
|
59
59
|
<attribute name="type"/>
|
60
60
|
</optional>
|
61
|
+
<optional>
|
62
|
+
<attribute name="tag"/>
|
63
|
+
</optional>
|
64
|
+
<optional>
|
65
|
+
<attribute name="multilingual-rendering">
|
66
|
+
<ref name="MultilingualRenderingType"/>
|
67
|
+
</attribute>
|
68
|
+
</optional>
|
61
69
|
<optional>
|
62
70
|
<ref name="reqtitle"/>
|
63
71
|
</optional>
|
64
72
|
<optional>
|
65
73
|
<ref name="label"/>
|
66
74
|
</optional>
|
67
|
-
<
|
75
|
+
<zeroOrMore>
|
68
76
|
<ref name="subject"/>
|
69
|
-
</
|
77
|
+
</zeroOrMore>
|
70
78
|
<zeroOrMore>
|
71
79
|
<ref name="reqinherit"/>
|
72
80
|
</zeroOrMore>
|
@@ -80,6 +88,7 @@
|
|
80
88
|
<ref name="verification"/>
|
81
89
|
<ref name="import"/>
|
82
90
|
<ref name="description"/>
|
91
|
+
<ref name="component"/>
|
83
92
|
</choice>
|
84
93
|
</zeroOrMore>
|
85
94
|
<optional>
|
@@ -100,17 +109,23 @@
|
|
100
109
|
</define>
|
101
110
|
<define name="label">
|
102
111
|
<element name="label">
|
103
|
-
<
|
112
|
+
<oneOrMore>
|
113
|
+
<ref name="TextElement"/>
|
114
|
+
</oneOrMore>
|
104
115
|
</element>
|
105
116
|
</define>
|
106
117
|
<define name="subject">
|
107
118
|
<element name="subject">
|
108
|
-
<
|
119
|
+
<oneOrMore>
|
120
|
+
<ref name="TextElement"/>
|
121
|
+
</oneOrMore>
|
109
122
|
</element>
|
110
123
|
</define>
|
111
124
|
<define name="reqinherit">
|
112
125
|
<element name="inherit">
|
113
|
-
<
|
126
|
+
<oneOrMore>
|
127
|
+
<ref name="TextElement"/>
|
128
|
+
</oneOrMore>
|
114
129
|
</element>
|
115
130
|
</define>
|
116
131
|
<define name="measurementtarget">
|
@@ -138,6 +153,12 @@
|
|
138
153
|
<ref name="RequirementSubpart"/>
|
139
154
|
</element>
|
140
155
|
</define>
|
156
|
+
<define name="component">
|
157
|
+
<element name="component">
|
158
|
+
<attribute name="class"/>
|
159
|
+
<ref name="RequirementSubpart"/>
|
160
|
+
</element>
|
161
|
+
</define>
|
141
162
|
<define name="reqt_references">
|
142
163
|
<element name="references">
|
143
164
|
<oneOrMore>
|
@@ -164,6 +185,14 @@
|
|
164
185
|
<data type="boolean"/>
|
165
186
|
</attribute>
|
166
187
|
</optional>
|
188
|
+
<optional>
|
189
|
+
<attribute name="tag"/>
|
190
|
+
</optional>
|
191
|
+
<optional>
|
192
|
+
<attribute name="multilingual-rendering">
|
193
|
+
<ref name="MultilingualRenderingType"/>
|
194
|
+
</attribute>
|
195
|
+
</optional>
|
167
196
|
<oneOrMore>
|
168
197
|
<ref name="BasicBlock"/>
|
169
198
|
</oneOrMore>
|
@@ -21,7 +21,7 @@ module RelatonCie
|
|
21
21
|
warn "[relaton-cie] (\"#{code}\") found #{result.docidentifier.first.id}"
|
22
22
|
else
|
23
23
|
warn "[relaton-cie] WARNING no match found online for #{code}. "\
|
24
|
-
|
24
|
+
"The code must be exactly like it is on the standards website."
|
25
25
|
end
|
26
26
|
result
|
27
27
|
end
|
@@ -0,0 +1,192 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "English"
|
4
|
+
require "fileutils"
|
5
|
+
require "mechanize"
|
6
|
+
require "relaton_bib"
|
7
|
+
|
8
|
+
module RelatonCie
|
9
|
+
class DataFetcher
|
10
|
+
URL = "https://www.techstreet.com/cie/searches/31156444?page=1&per_page=100"
|
11
|
+
|
12
|
+
def initialize(output, format)
|
13
|
+
@agent = Mechanize.new
|
14
|
+
@output = output
|
15
|
+
@format = format
|
16
|
+
end
|
17
|
+
|
18
|
+
# @param hit [Nokogiri::HTML::Document]
|
19
|
+
# @param doc [Mechanize::Page]
|
20
|
+
# @return [Array<RelatonBib::DocumentIdentifier>]
|
21
|
+
def fetch_docid(hit, doc) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/CyclomaticComplexity,Metrics/PerceivedComplexity
|
22
|
+
code = hit.at("h3/a").text.strip.sub(/\u25b9/, "").gsub(" / ", "/")
|
23
|
+
c2idx = %r{(?:\(|/)(?<c2>(?:ISO|IEC)\s[^()]+)} =~ code
|
24
|
+
code = code[0...c2idx].strip if c2idx
|
25
|
+
/^(?<code1>[^(]+)(?:\((?<code2>\w+\d+,(?:\sPages)?[^)]+))?/ =~ code
|
26
|
+
if code1.match?(/^CIE/)
|
27
|
+
c = code1.size > 25 && code2 ? "CIE #{code2.sub(/,(\sPages)?/, '')}" : code1
|
28
|
+
add = doc.at("//hgroup/h2")&.text&.match(/(Add)endum\s(\d+)$/)
|
29
|
+
c += " #{add[1]} #{add[2]}" if add
|
30
|
+
elsif (pcode = doc.at('//dt[.="Product Code(s):"]/following-sibling::dd'))
|
31
|
+
c = "CIE #{pcode.text.strip.match(/[^,]+/)}"
|
32
|
+
else
|
33
|
+
num = code.match(/(?<=\()\w{2}\d+,.+(?=\))/).to_s.gsub(/,(?=\s)/, "")
|
34
|
+
.gsub(/,(?=\S)/, " ")
|
35
|
+
c = "CIE #{num}"
|
36
|
+
end
|
37
|
+
docid = [RelatonBib::DocumentIdentifier.new(type: "CIE", id: c, primary: true)]
|
38
|
+
isbn = doc.at('//dt[contains(.,"ISBN")]/following-sibling::dd')
|
39
|
+
docid << RelatonBib::DocumentIdentifier.new(type: c2.match(/\w+/).to_s, id: c2.strip) if c2
|
40
|
+
docid << RelatonBib::DocumentIdentifier.new(type: "ISBN", id: isbn.text.strip) if isbn
|
41
|
+
docid
|
42
|
+
end
|
43
|
+
|
44
|
+
# @param doc [Mechanize::Page]
|
45
|
+
# @return [RelatonBib::TypedTitleStringCollection, Array]
|
46
|
+
def fetch_title(doc)
|
47
|
+
t = doc.at("//hgroup/h2", "//hgroup/h1")
|
48
|
+
return [] unless t
|
49
|
+
|
50
|
+
RelatonBib::TypedTitleString.from_string t.text.strip
|
51
|
+
end
|
52
|
+
|
53
|
+
# @param doc [Mechanize::Page]
|
54
|
+
# @return [Array<RelatonBib::BibliographicDate>]
|
55
|
+
def fetch_date(doc)
|
56
|
+
doc.xpath('//dt[.="Published:"]/following-sibling::dd[1]').map do |d|
|
57
|
+
pd = d.text.strip
|
58
|
+
on = pd.match?(/^\d{4}(?:[^-]|$)/) ? pd : Date.strptime(pd, "%m/%d/%Y").strftime("%Y-%m-%d")
|
59
|
+
RelatonBib::BibliographicDate.new(type: "published", on: on)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
# @param doc [Mechanize::Page]
|
64
|
+
# @return [String]
|
65
|
+
def fetch_edition(doc)
|
66
|
+
doc.at('//dt[.="Edition:"]/following-sibling::dd')&.text&.match(/^\d+(?=th)/)&.to_s
|
67
|
+
end
|
68
|
+
|
69
|
+
# @param doc [Mechanize::Page]
|
70
|
+
# @return [Array<Hash>]
|
71
|
+
def fetch_relation(doc) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
|
72
|
+
doc.xpath('//section[@class="history"]/ol/li[not(contains(@class,"selected-product"))]').map do |rel|
|
73
|
+
ref = rel.at("a")
|
74
|
+
url = "https://www.techstreet.com#{ref[:href]}"
|
75
|
+
title = RelatonBib::TypedTitleString.from_string ref.at('p/span[@class="title"]').text
|
76
|
+
did = ref.at("h3").text
|
77
|
+
docid = [RelatonBib::DocumentIdentifier.new(type: "CIE", id: did, primary: true)]
|
78
|
+
on = ref.at("p/time")
|
79
|
+
date = [RelatonBib::BibliographicDate.new(type: "published", on: on[:datetime])]
|
80
|
+
link = [RelatonBib::TypedUri.new(type: "src", content: url)]
|
81
|
+
bibitem = RelatonBib::BibliographicItem.new docid: docid, title: title, link: link, date: date
|
82
|
+
type = ref.at('//li/i[contains(@class,"historical")]') ? "updates" : "updatedBy"
|
83
|
+
{ type: type, bibitem: bibitem }
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# @param url [String]
|
88
|
+
# @return [Array<RelatonBib::TypedUri>]
|
89
|
+
def fetch_link(url)
|
90
|
+
[RelatonBib::TypedUri.new(type: "src", content: url)]
|
91
|
+
end
|
92
|
+
|
93
|
+
# @param doc [Mechanize::Page]
|
94
|
+
# @return [Array<RelatonBib::FormattedString>]
|
95
|
+
def fetch_abstract(doc)
|
96
|
+
content = doc.at('//div[contains(@class,"description")]')&.text&.strip
|
97
|
+
return [] if content.nil? || content.empty?
|
98
|
+
|
99
|
+
[RelatonBib::FormattedString.new(content: content, language: "en",
|
100
|
+
script: "Latn")]
|
101
|
+
end
|
102
|
+
|
103
|
+
# @param doc [Mechanize::Page]
|
104
|
+
# @return [Array<Hash>]
|
105
|
+
def fetch_contributor(doc) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength,Metrics/CyclomaticComplexity
|
106
|
+
authors = doc.xpath('//hgroup/p[not(@class="pub_date")]').text
|
107
|
+
contribs = []
|
108
|
+
until authors.empty?
|
109
|
+
/^(?<sname1>\S+(?:\sder?\s)?[^\s,]+)
|
110
|
+
(?:,?\s(?<sname2>[\w-]{2,})(?=,\s+\w\.))?
|
111
|
+
(?:,?\s(?<fname>[\w-]{2,})(?!,\s+\w\.))?
|
112
|
+
(?:(?:\s?,\s?|\s)(?<init>(?:\w(?:\s?\.|\s|,|$)[\s-]?)+))?
|
113
|
+
(?:(?:,\s?|\s|\.|(?<=\s))(?:and\s)?)?/x =~ authors
|
114
|
+
raise StandardError, "Author name not found in \"#{authors}\"" unless $LAST_MATCH_INFO
|
115
|
+
|
116
|
+
authors.sub! $LAST_MATCH_INFO.to_s, ""
|
117
|
+
sname = [sname1, sname2].compact.join " "
|
118
|
+
surname = RelatonBib::LocalizedString.new sname, "en", "Latn"
|
119
|
+
initial = (init&.strip || "").split(/(?:,|\.)(?:-|\s)?/).map do |int|
|
120
|
+
RelatonBib::LocalizedString.new(int.strip, "en", "Latn")
|
121
|
+
end
|
122
|
+
forename = fname ? [RelatonBib::LocalizedString.new(fname, "en", "Latn")] : []
|
123
|
+
fullname = RelatonBib::FullName.new surname: surname, forename: forename, initial: initial
|
124
|
+
person = RelatonBib::Person.new name: fullname
|
125
|
+
contribs << { entity: person, role: [{ type: "author" }] }
|
126
|
+
end
|
127
|
+
org = RelatonBib::Organization.new(
|
128
|
+
name: "Commission Internationale de L'Eclairage", abbreviation: "CIE",
|
129
|
+
url: "cie.co.at"
|
130
|
+
)
|
131
|
+
contribs << { entity: org, role: [{ type: "publisher" }] }
|
132
|
+
end
|
133
|
+
|
134
|
+
# @param bib [RelatonItu::ItuBibliographicItem]
|
135
|
+
def write_file(bib)
|
136
|
+
id = bib.docidentifier[0].id.gsub(%r{[/\s\-:.]}, "_")
|
137
|
+
file = "#{@output}/#{id.upcase}.#{@format}"
|
138
|
+
# if File.exist? file
|
139
|
+
# warn "File #{file} exists. Docid: #{bib.docidentifier[0].id}"
|
140
|
+
# warn "Link: #{bib.link.detect { |l| l.type == 'src' }.content}"
|
141
|
+
# else
|
142
|
+
out = @format == "xml" ? bib.to_xml(bibdata: true) : bib.to_hash.to_yaml
|
143
|
+
File.write file, out, encoding: "UTF-8"
|
144
|
+
# end
|
145
|
+
end
|
146
|
+
|
147
|
+
# @param hit [Nokogiri::HTML::Element]
|
148
|
+
def parse_page(hit) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
|
149
|
+
url = "https://www.techstreet.com#{hit.at('h3/a')[:href]}"
|
150
|
+
doc = time_req { @agent.get url }
|
151
|
+
item = RelatonBib::BibliographicItem.new(
|
152
|
+
type: "standard", docid: fetch_docid(hit, doc), title: fetch_title(doc),
|
153
|
+
link: fetch_link(url), abstract: fetch_abstract(doc),
|
154
|
+
date: fetch_date(doc), edition: fetch_edition(doc),
|
155
|
+
contributor: fetch_contributor(doc), relation: fetch_relation(doc),
|
156
|
+
language: ["en"], script: ["Latn"], doctype: "document"
|
157
|
+
)
|
158
|
+
write_file item
|
159
|
+
rescue StandardError => e
|
160
|
+
warn "Document: #{url}"
|
161
|
+
warn e.message
|
162
|
+
warn e.backtrace
|
163
|
+
end
|
164
|
+
|
165
|
+
def fetch(url)
|
166
|
+
result = time_req { @agent.get url }
|
167
|
+
result.xpath("//li[@data-product]").each { |hit| parse_page hit }
|
168
|
+
np = result.at '//a[@class="next_page"]'
|
169
|
+
fetch "https://www.techstreet.com#{np[:href]}" if np
|
170
|
+
end
|
171
|
+
|
172
|
+
def time_req
|
173
|
+
t1 = Time.now
|
174
|
+
result = yield
|
175
|
+
t = 1 - (Time.now - t1)
|
176
|
+
sleep t if t.positive?
|
177
|
+
result
|
178
|
+
end
|
179
|
+
|
180
|
+
def self.fetch(output: "data", format: "yaml")
|
181
|
+
t1 = Time.now
|
182
|
+
puts "Started at: #{t1}"
|
183
|
+
|
184
|
+
FileUtils.mkdir output unless Dir.exist? output
|
185
|
+
new(output, format).fetch URL
|
186
|
+
|
187
|
+
t2 = Time.now
|
188
|
+
puts "Stopped at: #{t2}"
|
189
|
+
puts "Done in: #{(t2 - t1).round} sec."
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|
@@ -2,11 +2,12 @@ require "relaton/processor"
|
|
2
2
|
|
3
3
|
module RelatonCie
|
4
4
|
class Processor < Relaton::Processor
|
5
|
-
def initialize
|
5
|
+
def initialize # rubocop:disable Lint/MissingSuper
|
6
6
|
@short = :relaton_cie
|
7
7
|
@prefix = "CIE"
|
8
8
|
@defaultprefix = /^CIE(-|\s)/
|
9
9
|
@idtype = "CIE"
|
10
|
+
@datasets = %w[cie-techstreet]
|
10
11
|
end
|
11
12
|
|
12
13
|
# @param code [String]
|
@@ -17,6 +18,18 @@ module RelatonCie
|
|
17
18
|
::RelatonCie::CieBibliography.get(code, date, opts)
|
18
19
|
end
|
19
20
|
|
21
|
+
#
|
22
|
+
# Fetch all the docukents from a source
|
23
|
+
#
|
24
|
+
# @param [String] _source source name
|
25
|
+
# @param [Hash] opts
|
26
|
+
# @option opts [String] :output directory to output documents
|
27
|
+
# @option opts [String] :format
|
28
|
+
#
|
29
|
+
def fetch_data(_source, opts)
|
30
|
+
DataFetcher.fetch(**opts)
|
31
|
+
end
|
32
|
+
|
20
33
|
# @param xml [String]
|
21
34
|
# @return [RelatonBib::BibliographicItem]
|
22
35
|
def from_xml(xml)
|
data/lib/relaton_cie/scrapper.rb
CHANGED
@@ -6,7 +6,7 @@ module RelatonCie
|
|
6
6
|
# @param code [String]
|
7
7
|
# @return [RelatonBib::BibliographicItem]
|
8
8
|
def scrape_page(code)
|
9
|
-
url = "#{ENDPOINT}#{code.gsub(/[\/\s
|
9
|
+
url = "#{ENDPOINT}#{code.gsub(/[\/\s\-:.]/, '_').upcase}.yaml"
|
10
10
|
parse_page url
|
11
11
|
rescue OpenURI::HTTPError => e
|
12
12
|
return if e.io.status.first == "404"
|
@@ -21,7 +21,7 @@ module RelatonCie
|
|
21
21
|
def parse_page(url)
|
22
22
|
doc = OpenURI.open_uri url
|
23
23
|
bib_hash = RelatonBib::HashConverter.hash_to_bib YAML.safe_load(doc)
|
24
|
-
RelatonBib::BibliographicItem.new
|
24
|
+
RelatonBib::BibliographicItem.new(**bib_hash)
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
data/lib/relaton_cie/version.rb
CHANGED
data/lib/relaton_cie.rb
CHANGED
data/relaton_cie.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
16
16
|
DESCRIPTION
|
17
17
|
spec.homepage = "https://github.com/metanorma/relaton-cie"
|
18
18
|
spec.license = "BSD-2-Clause"
|
19
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
19
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
20
20
|
|
21
21
|
spec.metadata["homepage_uri"] = spec.homepage
|
22
22
|
|
@@ -29,15 +29,13 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
30
30
|
spec.require_paths = ["lib"]
|
31
31
|
|
32
|
-
# spec.add_development_dependency "debase"
|
33
32
|
spec.add_development_dependency "equivalent-xml", "~> 0.6"
|
34
33
|
spec.add_development_dependency "pry-byebug"
|
35
|
-
spec.add_development_dependency "rake", "~> 10.0"
|
36
|
-
# spec.add_development_dependency "ruby-debug-ide"
|
37
34
|
spec.add_development_dependency "ruby-jing"
|
38
35
|
spec.add_development_dependency "simplecov"
|
39
36
|
spec.add_development_dependency "vcr"
|
40
37
|
spec.add_development_dependency "webmock"
|
41
38
|
|
42
|
-
spec.add_dependency "
|
39
|
+
spec.add_dependency "mechanize", "~> 2.8.0"
|
40
|
+
spec.add_dependency "relaton-bib", "~> 1.10.1"
|
43
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaton-cie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: equivalent-xml
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - "~>"
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '10.0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - "~>"
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '10.0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: ruby-jing
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,20 +94,34 @@ dependencies:
|
|
108
94
|
- - ">="
|
109
95
|
- !ruby/object:Gem::Version
|
110
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: mechanize
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.8.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.8.0
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: relaton-bib
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 1.
|
117
|
+
version: 1.10.1
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 1.
|
124
|
+
version: 1.10.1
|
125
125
|
description: "RelatonEcma: retrieve CIE Standards for bibliographic use \nusing the
|
126
126
|
BibliographicItem model.\n"
|
127
127
|
email:
|
@@ -139,6 +139,7 @@ files:
|
|
139
139
|
- README.adoc
|
140
140
|
- Rakefile
|
141
141
|
- bin/console
|
142
|
+
- bin/rspec
|
142
143
|
- bin/setup
|
143
144
|
- grammars/basicdoc.rng
|
144
145
|
- grammars/biblio.rng
|
@@ -146,6 +147,7 @@ files:
|
|
146
147
|
- grammars/reqt.rng
|
147
148
|
- lib/relaton_cie.rb
|
148
149
|
- lib/relaton_cie/cie_bibliography.rb
|
150
|
+
- lib/relaton_cie/data_fetcher.rb
|
149
151
|
- lib/relaton_cie/processor.rb
|
150
152
|
- lib/relaton_cie/scrapper.rb
|
151
153
|
- lib/relaton_cie/version.rb
|
@@ -163,7 +165,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
163
165
|
requirements:
|
164
166
|
- - ">="
|
165
167
|
- !ruby/object:Gem::Version
|
166
|
-
version: 2.
|
168
|
+
version: 2.5.0
|
167
169
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
168
170
|
requirements:
|
169
171
|
- - ">="
|