Sha256: 530217e1fdef6095b4ce252185005f9dc9289ac354e09b95c51e498ffe8d742a
Contents?: true
Size: 976 Bytes
Versions: 1
Compression:
Stored size: 976 Bytes
Contents
# frozen_string_literal:true module RelatonCie # IETF bibliography module module CieBibliography class << self # @param code [String] the ECMA standard Code to look up (e..g "ECMA-6") # @return [RelatonBib::BibliographicEcma] def search(code) Scrapper.scrape_page code end # @param code [String] the ECMA standard Code to look up (e..g "ECMA-6") # @param year [String] not used # @param opts [Hash] not used # @return [RelatonCie::BibliographicItem] Relaton of reference def get(code, _year = nil, _opts = {}) Util.warn "(#{code}) fetching..." result = search code if result Util.warn "(#{code}) found `#{result.docidentifier.first.id}`" else Util.warn "(#{code}) WARNING no match found online for `#{code}`. " \ "The code must be exactly like it is on the standards website." end result end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
relaton-cie-1.16.1 | lib/relaton_cie/cie_bibliography.rb |