jekyll-geolexica 1.4.1 → 1.5.4

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: f4af820f6b04bb909021588008cdedd298324f13aa4f4b1c50239cf372dd78dd
4
- data.tar.gz: 4f3d6cb5bae735a523a1be7364810f870ff249efc90beca1c925ad9fed7e4ebf
3
+ metadata.gz: 781327ac34b947ac0373cb20db954c62f4922623311445a2da3c62f854a048d6
4
+ data.tar.gz: 6bfc61dbedcd5165e4041fa8893ecb35583fafba9040a553850df41239f80094
5
5
  SHA512:
6
- metadata.gz: f5911a94c4790a8861b5b839c5e1769a3f2bed8f4244b59a41b92c687b1a92eedc6f9a596b8ce2ce4132b4e1530c3f3571e023a97871790557f6c6b3845948f9
7
- data.tar.gz: 0be54b8eb39d76d78ac760aaa53c1b8d6075446dfb8f5a83d01acff2ebfb99fc0aff7d39ddf8ce4fc11200202aa6023a9377969c5738f7bed3124c90359fe957
6
+ metadata.gz: a0b0a570bd48cd0846ab34ef0b1d33f36ebb5a278f58424f4172074c216f9c25eb79188814751c058e16abcf641d52b2ac5f676f271880a8b91967e01ba181e5
7
+ data.tar.gz: 6a3a4a0d8c0424262331d802de8a31d16b4c160755caee798041b77c98c3768b00cbbeca9a22e9e1c38872aac94720fc12586ed32d093ccfbff4c0915c485f82
@@ -0,0 +1,44 @@
1
+ <span class="committee-widget">
2
+ <span class="widget-group">
3
+ {%- if site.committee.parent_org_name %}
4
+ <span class="widget-item parent-org-reference">
5
+ {{ site.committee.parent_org_name }}
6
+ </span>
7
+ {%- endif %}
8
+ {%- if site.committee.identifier %}
9
+ <span class="widget-item committee-id">
10
+ {{ site.committee.identifier }}
11
+ </span>
12
+ {%- endif %}
13
+ {%- if site.committee.name %}
14
+ <span class="widget-item committee-name">
15
+ {{ site.committee.name }}
16
+ </span>
17
+ {%- endif %}
18
+
19
+ {% if page.layout == "home" and site.always_show_committee_link_on_landing and site.committee.home %}
20
+ <a href="{{ site.committee.home }}" class="widget-item home">
21
+ <i class="fas fa-home"></i>
22
+ Committee site
23
+ </a>
24
+ {% endif %}
25
+ </span>
26
+
27
+ {% if site.committee.home or site.committee.links %}
28
+ <span class="widget-group committee-menu">
29
+ {% unless page.layout == "home" and site.always_show_committee_link_on_landing and site.committee.home %}
30
+ <a href="{{ site.committee.home }}" class="widget-item home">
31
+ <i class="fas fa-home"></i>
32
+ Committee site
33
+ </a>
34
+ {% endunless %}
35
+ {% if site.committee.links %}
36
+ {% for link in site.committee.links %}
37
+ <a href="{{ link.url }}" class="widget-item">
38
+ {{ link.title }}
39
+ </a>
40
+ {% endfor %}
41
+ {% endif %}
42
+ </span>
43
+ {% endif %}
44
+ </span>
@@ -1,11 +1,6 @@
1
- {%- assign english = page["eng"] -%}
2
1
  <section class="field source">
3
2
  <p class="field-name">source</p>
4
3
  <p class="field-value">
5
- {% if english.authoritative_source.link %}
6
- <a href="{{ english.authoritative_source.link }}">{{ english.authoritative_source.ref | default: english.authoritative_source.link | escape_once }}</a>{% if english.authoritative_source.clause %}, {{ english.authoritative_source.clause }}{% endif %}
7
- {% else %}
8
- {{ english.authoritative_source.ref }}{% if english.authoritative_source.clause %}, {{ english.authoritative_source.clause }}{% endif %}
9
- {% endif %}
4
+ {{ page["eng"].authoritative_source | display_authoritative_source }}
10
5
  </p>
11
6
  </section>
@@ -26,16 +26,9 @@
26
26
  {% endif %}
27
27
 
28
28
  {% if localized_term.authoritative_source.ref != english.authoritative_source.ref %}
29
- {% if localized_term.authoritative_source.link %}
30
29
  <p class="source localized">
31
- [SOURCE: <a href="{{ localized_term.authoritative_source.link }}">
32
- {{ localized_term.authoritative_source.ref }}</a>{% if localized_term.authoritative_source.clause %}, {{ localized_term.authoritative_source.clause }}{% endif %}]
30
+ [SOURCE: {{ localized_term.authoritative_source | display_authoritative_source }}]
33
31
  </p>
34
- {% else %}
35
- <p class="source localized">
36
- [SOURCE: {{ localized_term.authoritative_source.ref }}{% if localized_term.authoritative_source.clause %}, {{ localized_term.authoritative_source.clause }}{% endif %}]
37
- </p>
38
- {% endif %}
39
32
  <span class="warning">
40
33
  This translated term may not be from the same source as the normative term.
41
34
  </span>
@@ -15,50 +15,7 @@
15
15
  </div>
16
16
 
17
17
  <div class="site-title">
18
- <span class="committee-widget">
19
- <span class="widget-group">
20
- {%- if site.committee.parent_org_name %}
21
- <span class="widget-item parent-org-reference">
22
- {{ site.committee.parent_org_name }}
23
- </span>
24
- {%- endif %}
25
- {%- if site.committee.identifier %}
26
- <span class="widget-item committee-id">
27
- {{ site.committee.identifier }}
28
- </span>
29
- {%- endif %}
30
- {%- if site.committee.name %}
31
- <span class="widget-item committee-name">
32
- {{ site.committee.name }}
33
- </span>
34
- {%- endif %}
35
-
36
- {% if page.layout == "home" and site.always_show_committee_link_on_landing and site.committee.home %}
37
- <a href="{{ site.committee.home }}" class="widget-item home">
38
- <i class="fas fa-home"></i>
39
- Committee site
40
- </a>
41
- {% endif %}
42
- </span>
43
-
44
- {% if site.committee.home or site.committee.links %}
45
- <span class="widget-group committee-menu">
46
- {% unless page.layout == "home" and site.always_show_committee_link_on_landing and site.committee.home %}
47
- <a href="{{ site.committee.home }}" class="widget-item home">
48
- <i class="fas fa-home"></i>
49
- Committee site
50
- </a>
51
- {% endunless %}
52
- {% if site.committee.links %}
53
- {% for link in site.committee.links %}
54
- <a href="{{ link.url }}" class="widget-item">
55
- {{ link.title }}
56
- </a>
57
- {% endfor %}
58
- {% endif %}
59
- </span>
60
- {% endif %}
61
- </span>
18
+ {% include committee-widget.html %}
62
19
 
63
20
  <h1 class="title">
64
21
  <a href="/">{{ site.title_html | default: site.title }}</a>
@@ -1,11 +1,15 @@
1
1
  ---
2
- permalink: "/api/concepts-index-list.json"
2
+ permalink: "/api/concept-search-index.json"
3
3
  ---
4
4
  [
5
5
  {% for concept in site.concepts %}
6
6
  {
7
- "termid": {{ concept.termid }},
7
+ "termid": {{ concept.termid | jsonify }},
8
8
  "term": {{ concept.eng.terms.first.designation | jsonify }},
9
+ "term_url": {{ concept.url | jsonify }},
10
+ "sort_order": {
11
+ "natural": {{ forloop.index }}
12
+ },
9
13
 
10
14
  {% assign english_concept = concept["eng"] %}
11
15
  {% for lang in site.geolexica.term_languages %}
@@ -13,6 +17,7 @@ permalink: "/api/concepts-index-list.json"
13
17
  "{{ lang }}": {% if concept[lang] %}{
14
18
  "term": {{ concept[lang].terms.first.designation | jsonify }},
15
19
  "id": {{ concept[lang].id | jsonify }},
20
+ "term_url": {{ concept.url | append: "#entry-lang-" | append: lang | jsonify }},
16
21
  "entry_status": {{ english_concept.entry_status | jsonify }},
17
22
  "language_code": {{ concept[lang].language_code | jsonify }},
18
23
  "review_decision": {{ english_concept.review_decision | jsonify }}
@@ -1,21 +1,16 @@
1
+ ---
2
+ ---
1
3
  importScripts('/assets/js/babel-polyfill.js');
2
4
 
3
- const CONCEPTS_URL = '/api/concepts-index-list.json';
5
+ const CONCEPTS_URL = '/api/concept-search-index.json';
4
6
 
5
- const LANGUAGES = [
6
- 'eng',
7
- 'ara',
8
- 'spa',
9
- 'swe',
10
- 'kor',
11
- 'rus',
12
- 'ger',
13
- 'fre',
14
- 'fin',
15
- 'jpn',
16
- 'dan',
17
- 'chi',
18
- ];
7
+ /** For example:
8
+ * const LANGUAGES = [ 'eng', 'deu' ];
9
+ * Having a wrapper function helps not to break syntax highlight.
10
+ */
11
+ const LANGUAGES = (function() {
12
+ return {{ site.geolexica.term_languages | jsonify }} || [];
13
+ })();
19
14
 
20
15
  var concepts = null;
21
16
  var latestQuery = null;
@@ -39,7 +34,7 @@ async function filterAndSort(params) {
39
34
  const matchingLanguages = LANGUAGES.
40
35
  filter((lang) => {
41
36
  const term = (item[lang] || {}).term;
42
- return term && term.toLowerCase().indexOf(params.string) >= 0;
37
+ return term && term.toLowerCase().indexOf(queryString) >= 0;
43
38
  });
44
39
 
45
40
  if (matchingLanguages.length > 0) {
@@ -77,7 +72,7 @@ async function filterAndSort(params) {
77
72
  });
78
73
  }
79
74
 
80
- return concepts.sort((item1, item2) => item1.termid - item2.termid);
75
+ return concepts.sort((item1, item2) => item1.sort_order.natural - item2.sort_order.natural);
81
76
  }
82
77
 
83
78
  onmessage = async function(msg) {
@@ -1,22 +1,24 @@
1
+ ---
2
+ ---
1
3
  (function () {
2
4
 
3
5
  const searchWorker = new Worker('/assets/js/concept-search-worker.js');
4
6
 
5
- // TODO: Move to a shared module
6
- const LANGUAGES = [
7
- 'eng',
8
- 'ara',
9
- 'spa',
10
- 'swe',
11
- 'kor',
12
- 'rus',
13
- 'ger',
14
- 'fre',
15
- 'fin',
16
- 'jpn',
17
- 'dan',
18
- 'chi',
19
- ];
7
+ /** For example:
8
+ * const LANGUAGES = [ 'eng', 'deu' ];
9
+ * Having a wrapper function helps not to break syntax highlight.
10
+ */
11
+ const LANGUAGES = (function() {
12
+ return {{ site.geolexica.term_languages | jsonify }} || [];
13
+ })();
14
+
15
+ /** For example:
16
+ * const SEARCH_REFINEMENTS = [ 'validity' ];
17
+ * Having a wrapper function helps not to break syntax highlight.
18
+ */
19
+ const SEARCH_REFINEMENTS = (function() {
20
+ return {{ site.geolexica.search.refinements | jsonify }} || [];
21
+ })();
20
22
 
21
23
 
22
24
  // React-based concept browser
@@ -57,7 +59,7 @@
57
59
  this.stringInputRef = React.createRef();
58
60
 
59
61
  this.state = {
60
- valid: 'valid', // Required value of the entry_status field, or undefined
62
+ valid: SEARCH_REFINEMENTS.indexOf('validity') >= 0 ? 'valid' : undefined, // Required value of the entry_status field, or undefined
61
63
  string: '',
62
64
  };
63
65
  }
@@ -75,10 +77,10 @@
75
77
  onChange: this.handleSearchStringChange}),
76
78
  ];
77
79
 
78
- if (this.state.string.length > 1 && (this.props.refineControls || []).length > 0) {
80
+ if (this.state.string.length > 1 && (SEARCH_REFINEMENTS).length > 0) {
79
81
  var refineControls = [];
80
82
 
81
- if (this.props.refineControls.indexOf('validity') >= 0) {
83
+ if (SEARCH_REFINEMENTS.indexOf('validity') >= 0) {
82
84
  refineControls.push(
83
85
  el('div', { key: 'validity', className: 'validity' }, [
84
86
  el('input', {
@@ -218,7 +220,7 @@
218
220
  el('div', { key: 'search-controls', className: 'search-controls' },
219
221
  el(SearchControls, {
220
222
  onSearchChange: this.handleSearchQuery,
221
- refineControls: ['validity'],
223
+ refineControls: SEARCH_REFINEMENTS,
222
224
  })
223
225
  ),
224
226
  ];
@@ -265,13 +267,7 @@
265
267
  ReactDOM.render(el(ConceptBrowser, null), document.querySelector('.browse-concepts'))
266
268
 
267
269
  function getConceptPermalink(concept) {
268
- if (concept.termid) {
269
- return `/concepts/${concept.termid}/`;
270
- } else if (concept.id && concept.language_code) {
271
- return `/concepts/${concept.id}/#entry-lang-${concept.language_code}`;
272
- } else {
273
- return null;
274
- }
270
+ return concept.term_url;
275
271
  }
276
272
 
277
273
  function updateBodyClass({ searchQuery, expanded }) {
@@ -43,6 +43,9 @@ Gem::Specification.new do |spec|
43
43
 
44
44
  spec.add_runtime_dependency "jekyll-asciidoc"
45
45
 
46
+ # Zeitwerk::Loader#push_dir supports :namespace argument from v. 2.4.
47
+ spec.add_runtime_dependency "zeitwerk", "~> 2.4"
48
+
46
49
  spec.add_development_dependency "bundler", "~> 2.1"
47
50
  spec.add_development_dependency "pry"
48
51
  spec.add_development_dependency "rake", ">= 10"
@@ -1,3 +1,6 @@
1
+ # (c) Copyright 2020 Ribose Inc.
2
+ #
3
+
1
4
  # The Jekyll convention is to use kebab-case in gem names only, even though
2
5
  # it conflicts with Ruby conventions. This file is meant to bridge those
3
6
  # two conventions together, otherwise this plugin won't work if loaded
@@ -5,15 +5,32 @@ require "jekyll"
5
5
 
6
6
  module Jekyll
7
7
  module Geolexica
8
+ # Loads Rake tasks which are provided in this gem.
9
+ #
10
+ # In order to load these tasks, following lines should be added to given
11
+ # site's Rakefile:
12
+ #
13
+ # require "jekyll-geolexica"
14
+ # ::Jekyll::Geolexica.load_tasks
15
+ def self.load_tasks
16
+ tasks_path = File.expand_path("../tasks", __dir__)
17
+ Rake.add_rakelib(tasks_path)
18
+ end
8
19
  end
9
20
  end
10
21
 
11
- require_relative "geolexica/configuration"
12
- require_relative "geolexica/concept_page"
13
- require_relative "geolexica/concept_serializer"
14
- require_relative "geolexica/concepts_generator"
15
- require_relative "geolexica/glossary"
16
- require_relative "geolexica/hooks"
17
- require_relative "geolexica/meta_pages_generator"
22
+ # Unfortunately, Zeitwerk::Loader.for_gem doesn't work well when gem's main
23
+ # namespace is compound.
24
+ # Also, Jekyll::Geolexica must be defined prior passing it to #push_dir.
25
+ require "zeitwerk"
26
+ loader = Zeitwerk::Loader.new
27
+ loader.tag = "jekyll-geolexica"
28
+ loader.push_dir(File.join(__dir__, "geolexica"), namespace: Jekyll::Geolexica)
29
+ loader.inflector = Zeitwerk::GemInflector.new(__FILE__)
30
+ loader.setup
31
+
32
+ # Jekyll-Geolexica must be loaded eagerly because Jekyll has no other way
33
+ # to learn about gem's features.
34
+ loader.eager_load
18
35
 
19
36
  Jekyll::Geolexica::Hooks.register_all_hooks
@@ -1,3 +1,6 @@
1
+ # (c) Copyright 2020 Ribose Inc.
2
+ #
3
+
1
4
  module Jekyll
2
5
  module Geolexica
3
6
  # A decorator responsible for serializing concepts in the most simplistic
@@ -44,7 +44,7 @@ module Jekyll
44
44
  end
45
45
 
46
46
  def sort_pages
47
- generated_pages.sort_by! { |p| p.termid.to_s }
47
+ generated_pages.sort_by! { |p| p.termid }
48
48
  end
49
49
 
50
50
  def initialize_collections
@@ -0,0 +1,29 @@
1
+ # (c) Copyright 2020 Ribose Inc.
2
+ #
3
+
4
+ module Jekyll
5
+ module Geolexica
6
+ module Filters
7
+ # Renders authoritative source hash as HTML.
8
+ #
9
+ # @param input [Hash] authoritative source hash.
10
+ # @return [String]
11
+ #
12
+ # TODO Maybe support string inputs.
13
+ def display_authoritative_source(input)
14
+ ref, clause, link = input.values_at("ref", "clause", "link") rescue nil
15
+
16
+ return "" if ref.nil? && link.nil?
17
+
18
+ ref_caption = escape_once(ref || link)
19
+ ref_part = link ? %[<a href="#{link}">#{ref_caption}</a>] : ref_caption
20
+
21
+ clause_part = clause && escape_once(clause)
22
+
23
+ [ref_part, clause_part].compact.join(", ")
24
+ end
25
+ end
26
+ end
27
+ end
28
+
29
+ Liquid::Template.register_filter(Jekyll::Geolexica::Filters)
@@ -1,3 +1,6 @@
1
+ # (c) Copyright 2020 Ribose Inc.
2
+ #
3
+
1
4
  module Jekyll
2
5
  module Geolexica
3
6
  module Hooks
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Jekyll
5
5
  module Geolexica
6
- VERSION = "1.4.1".freeze
6
+ VERSION = "1.5.4".freeze
7
7
  end
8
8
  end
@@ -0,0 +1,44 @@
1
+ # (c) Copyright 2020 Ribose Inc.
2
+ #
3
+
4
+ namespace :geolexica do
5
+
6
+ desc "Deploy site to S3"
7
+ task :s3_deploy do
8
+ s3sync_patterns_and_options = {
9
+ "*.html" => ["--content-type", "text/html; charset=utf-8"],
10
+ "*.json" => ["--content-type", "application/json; charset=utf-8"],
11
+ "*.jsonld" => ["--content-type", "application/ld+json; charset=utf-8"],
12
+ "*.tbx.xml" => ["--content-type", "application/xml; charset=utf-8"],
13
+ "*.ttl" => ["--content-type", "text/turtle; charset=utf-8"],
14
+ "*.yaml" => ["--content-type", "text/yaml; charset=utf-8"],
15
+ }
16
+
17
+ s3sync_patterns_and_options.each_pair do |pattern, options|
18
+ s3_sync "--exclude", "*", "--include", pattern, *options
19
+ end
20
+
21
+ # Remaining files
22
+ remaining_patterns = s3sync_patterns_and_options.keys
23
+ s3_sync "--include", "*", *remaining_patterns.flat_map { |k| ["--exclude", k] }
24
+
25
+ aws "configure", "set", "preview.cloudfront", "true"
26
+
27
+ aws "cloudfront", "create-invalidation",
28
+ "--distribution-id", ENV["CLOUDFRONT_DISTRIBUTION_ID"],
29
+ "--paths", "/*"
30
+ end
31
+
32
+ def s3_sync(*args)
33
+ source = "_site"
34
+ target = "s3://#{ENV["S3_BUCKET_NAME"]}"
35
+ common_options = ["--region", ENV["AWS_REGION"], "--delete", "--no-progress"]
36
+
37
+ aws "s3", "sync", source, target, *common_options, *args
38
+ end
39
+
40
+ def aws(*args)
41
+ system "aws", *args, exception: true
42
+ end
43
+
44
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-geolexica
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-20 00:00:00.000000000 Z
11
+ date: 2020-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -17,12 +17,12 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 3.8.5
20
- - - "!="
21
- - !ruby/object:Gem::Version
22
- version: 4.1.0
23
20
  - - "<"
24
21
  - !ruby/object:Gem::Version
25
22
  version: '4.2'
23
+ - - "!="
24
+ - !ruby/object:Gem::Version
25
+ version: 4.1.0
26
26
  type: :runtime
27
27
  prerelease: false
28
28
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,12 +30,12 @@ dependencies:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 3.8.5
33
- - - "!="
34
- - !ruby/object:Gem::Version
35
- version: 4.1.0
36
33
  - - "<"
37
34
  - !ruby/object:Gem::Version
38
35
  version: '4.2'
36
+ - - "!="
37
+ - !ruby/object:Gem::Version
38
+ version: 4.1.0
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: jekyll-asciidoc
41
41
  requirement: !ruby/object:Gem::Requirement
@@ -50,6 +50,20 @@ dependencies:
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
52
  version: '0'
53
+ - !ruby/object:Gem::Dependency
54
+ name: zeitwerk
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '2.4'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '2.4'
53
67
  - !ruby/object:Gem::Dependency
54
68
  name: bundler
55
69
  requirement: !ruby/object:Gem::Requirement
@@ -106,7 +120,7 @@ dependencies:
106
120
  - - "~>"
107
121
  - !ruby/object:Gem::Version
108
122
  version: '3.9'
109
- description:
123
+ description:
110
124
  email:
111
125
  - open.source@ribose.com
112
126
  executables: []
@@ -118,6 +132,7 @@ files:
118
132
  - _config.yml
119
133
  - _data/lang.yaml
120
134
  - _includes/analytics.html
135
+ - _includes/committee-widget.html
121
136
  - _includes/concept-api-links.html
122
137
  - _includes/concept-header.html
123
138
  - _includes/concept-info.html
@@ -148,7 +163,7 @@ files:
148
163
  - _layouts/resource-page.html
149
164
  - _pages/404.adoc
150
165
  - _pages/api/rdf-profile.ttl
151
- - _pages/concepts-index-list.json
166
+ - _pages/concept-search-index.json
152
167
  - _pages/concepts-index.json
153
168
  - _pages/concepts.adoc
154
169
  - _pages/index.adoc
@@ -186,10 +201,12 @@ files:
186
201
  - lib/jekyll/geolexica/concept_serializer.rb
187
202
  - lib/jekyll/geolexica/concepts_generator.rb
188
203
  - lib/jekyll/geolexica/configuration.rb
204
+ - lib/jekyll/geolexica/filters.rb
189
205
  - lib/jekyll/geolexica/glossary.rb
190
206
  - lib/jekyll/geolexica/hooks.rb
191
207
  - lib/jekyll/geolexica/meta_pages_generator.rb
192
208
  - lib/jekyll/geolexica/version.rb
209
+ - lib/tasks/deploy.rake
193
210
  - package-lock.json
194
211
  - package.json
195
212
  homepage: https://open.ribose.com/
@@ -199,7 +216,7 @@ metadata:
199
216
  bug_tracker_uri: https://github.com/geolexica/geolexica-server/issues
200
217
  homepage_uri: https://open.ribose.com/
201
218
  source_code_uri: https://github.com/geolexica/geolexica-server
202
- post_install_message:
219
+ post_install_message:
203
220
  rdoc_options: []
204
221
  require_paths:
205
222
  - lib
@@ -214,8 +231,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
231
  - !ruby/object:Gem::Version
215
232
  version: '0'
216
233
  requirements: []
217
- rubygems_version: 3.0.3
218
- signing_key:
234
+ rubygems_version: 3.1.4
235
+ signing_key:
219
236
  specification_version: 4
220
237
  summary: Geolexica plugin for Jekyll
221
238
  test_files: []