jekyll-algolia 1.6.0 → 1.7.0
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 +5 -5
- data/README.md +2 -0
- data/lib/jekyll/algolia/version.rb +1 -1
- data/lib/jekyll/commands/algolia.rb +7 -0
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8e25f44ea863e7df956f7629ec0ef140576f01166f1dc1db15c4592d8131e517
|
|
4
|
+
data.tar.gz: 4c01bab60fb28d44ef99520c5f622991590d1a17311ac4957c01674fb3d6261c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8807f6ff30a1d02cdcccdfcfb2a39631880930777ab2ceb10bb1e4115d820b1846ccadd67c69195e2c12bdf4c6787519f6441133f8bd868da423b37e584d8ff
|
|
7
|
+
data.tar.gz: cd55421b501dfba4bae6e25e2d3b0776f74ef9e94f8e72bf74c6e1a5ab4faea514388eaca830dd16c33b3dd029ea8267874a56e4a66c25a79e9ed917470972b4
|
data/README.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
|
|
10
10
|
Add fast and relevant search to your Jekyll site.
|
|
11
11
|
|
|
12
|
+
> While this plugin was created by Algolia, it is not an officially supported API client. It is possible that future major versions of Jekyll break compatibility, or require changes.
|
|
13
|
+
|
|
12
14
|
## Usage
|
|
13
15
|
|
|
14
16
|
```shell
|
|
@@ -24,6 +24,13 @@ module Jekyll
|
|
|
24
24
|
command.option 'force_settings',
|
|
25
25
|
'--force-settings',
|
|
26
26
|
'Force updating of the index settings'
|
|
27
|
+
command.option 'future',
|
|
28
|
+
'--future',
|
|
29
|
+
'Index posts with a future date'
|
|
30
|
+
command.option 'show_drafts',
|
|
31
|
+
'--drafts',
|
|
32
|
+
'-D',
|
|
33
|
+
'Index posts in the _drafts folder'
|
|
27
34
|
|
|
28
35
|
command.action do |_, options|
|
|
29
36
|
configuration = configuration_from_options(options)
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-algolia
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Carry
|
|
8
8
|
- Sylvain Utard
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2021-05-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: algolia_html_extractor
|
|
@@ -325,7 +325,7 @@ homepage: https://github.com/algolia/jekyll-algolia
|
|
|
325
325
|
licenses:
|
|
326
326
|
- MIT
|
|
327
327
|
metadata: {}
|
|
328
|
-
post_install_message:
|
|
328
|
+
post_install_message:
|
|
329
329
|
rdoc_options: []
|
|
330
330
|
require_paths:
|
|
331
331
|
- lib
|
|
@@ -340,9 +340,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
340
340
|
- !ruby/object:Gem::Version
|
|
341
341
|
version: '0'
|
|
342
342
|
requirements: []
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
signing_key:
|
|
343
|
+
rubygems_version: 3.2.3
|
|
344
|
+
signing_key:
|
|
346
345
|
specification_version: 4
|
|
347
346
|
summary: Index your Jekyll content into Algolia
|
|
348
347
|
test_files: []
|