algoliasearch-jekyll 0.5.2 → 0.5.3
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/CONTRIBUTING.md +4 -8
- data/algoliasearch-jekyll.gemspec +3 -2
- data/lib/version.rb +1 -1
- data/scripts/release +8 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e42531ea19baa4e742f31040364713c0aa846d68
|
|
4
|
+
data.tar.gz: 4afb02ff41d0b841005c85d7adaaa2a6e168d58e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9e186d2ea14962ea6b23294dd6df6da375082d139838b48f6ac91a3e7acee11e4641d54f9d095661f3fea3577cac811408b2049a0778947cf7679081c6eae66
|
|
7
|
+
data.tar.gz: f310963a860ddb76e6f0cb166fab53ec10724e9a362c57cd9aed8b0a9e174650396caff04225eddae56fd0dda101caf95d339a3cff1b77479f90aa065d758c5d
|
data/CONTRIBUTING.md
CHANGED
|
@@ -36,15 +36,11 @@ but running them locally gives faster feedback.
|
|
|
36
36
|
This part is for main contributors:
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
# Bump the version
|
|
40
|
-
|
|
39
|
+
# Bump the version (in develop)
|
|
40
|
+
./scripts/bump_version minor
|
|
41
41
|
|
|
42
|
-
#
|
|
43
|
-
|
|
44
|
-
git commit -m 'chore(bump): Version bump to X.Y.Z'
|
|
45
|
-
|
|
46
|
-
# Tag and release
|
|
47
|
-
rake release
|
|
42
|
+
# Update master and release
|
|
43
|
+
./scripts/release
|
|
48
44
|
|
|
49
45
|
# Install the gem locally
|
|
50
46
|
rake install
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: algoliasearch-jekyll 0.5.
|
|
5
|
+
# stub: algoliasearch-jekyll 0.5.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "algoliasearch-jekyll"
|
|
9
|
-
s.version = "0.5.
|
|
9
|
+
s.version = "0.5.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
@@ -41,6 +41,7 @@ Gem::Specification.new do |s|
|
|
|
41
41
|
"scripts/check_flog",
|
|
42
42
|
"scripts/git_hooks/pre-commit",
|
|
43
43
|
"scripts/git_hooks/pre-push",
|
|
44
|
+
"scripts/release",
|
|
44
45
|
"spec/credential_checker_spec.rb",
|
|
45
46
|
"spec/fixtures/_config.yml",
|
|
46
47
|
"spec/fixtures/_layouts/default.html",
|
data/lib/version.rb
CHANGED
data/scripts/release
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: algoliasearch-jekyll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Carry
|
|
@@ -223,6 +223,7 @@ files:
|
|
|
223
223
|
- scripts/check_flog
|
|
224
224
|
- scripts/git_hooks/pre-commit
|
|
225
225
|
- scripts/git_hooks/pre-push
|
|
226
|
+
- scripts/release
|
|
226
227
|
- spec/credential_checker_spec.rb
|
|
227
228
|
- spec/fixtures/_config.yml
|
|
228
229
|
- spec/fixtures/_layouts/default.html
|