jekyll-test 1.0.0 → 1.1.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 +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/lib/jekyll/test/travis.rake +9 -2
- data/lib/jekyll/test/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db31938436d88951a7e43f1faa0583673f69ef72
|
|
4
|
+
data.tar.gz: d8b7d5cecd4b880584706edfe2c791c383b82f42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc01e09b2ea3caf0401fde9fd6fa2b3e4f0d7bb3103ee4833ac9c49547405a7272ba18d6fdaa6414520c05bfd0b032b6e7e54227f342b910d22883279383a7f7
|
|
7
|
+
data.tar.gz: 30e9df6f890b61bc43f37a0c454aea4b65c12054c6c97de5aaba55cfb43cfd701d273210f5f205c392cdd33e186fbe9acab21dafb550f3db5700c78d8f592ec6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
* Update travis configuration to fix SSL check errors. Rerun `rake jekyll:configure:travis` to get the new configuration.
|
|
6
|
+
* Update travis builds to run on Ruby 2.4.2
|
|
7
|
+
|
|
3
8
|
## 1.0.0
|
|
4
9
|
|
|
5
10
|
* Added `jekyll:configure:travis` task to automatically configure travis matrix builds.
|
|
@@ -12,4 +17,4 @@
|
|
|
12
17
|
|
|
13
18
|
## 0.1.0
|
|
14
19
|
|
|
15
|
-
* initial release, pulls in required dependencies for testing.
|
|
20
|
+
* initial release, pulls in required dependencies for testing.
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Jekyll-Test
|
|
2
2
|
|
|
3
|
-
`jekyll-test` is a highly opinionated test configuration for Jekyll sites to let you create well-formed sites with minimal configuration.
|
|
3
|
+
`jekyll-test` is a highly opinionated test configuration for Jekyll sites to let you create well-formed sites with minimal configuration, built on top of [html-proofer](https://github.com/gjtorikian/html-proofer).
|
|
4
4
|
|
|
5
5
|
It provides two rake tasks:
|
|
6
6
|
|
data/lib/jekyll/test/travis.rake
CHANGED
|
@@ -11,9 +11,16 @@ namespace :jekyll do
|
|
|
11
11
|
travis = {}
|
|
12
12
|
travis = YAML.load_file(".travis.yml")
|
|
13
13
|
# Update configuration
|
|
14
|
-
travis["rvm"] = ["2.4.
|
|
14
|
+
travis["rvm"] = ["2.4.2"]
|
|
15
15
|
travis["sudo"] = false
|
|
16
16
|
travis["cache"] = "bundler"
|
|
17
|
+
travis["addons"] = {
|
|
18
|
+
"apt" => {
|
|
19
|
+
"packages" => [
|
|
20
|
+
"libcurl4-openssl-dev"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
}
|
|
17
24
|
travis["env"] = [
|
|
18
25
|
%Q{TASK='jekyll:check'},
|
|
19
26
|
%Q{TASK='jekyll:check_external_links'},
|
|
@@ -31,4 +38,4 @@ namespace :jekyll do
|
|
|
31
38
|
|
|
32
39
|
end
|
|
33
40
|
|
|
34
|
-
end
|
|
41
|
+
end
|
data/lib/jekyll/test/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Smith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-09-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
156
156
|
version: '0'
|
|
157
157
|
requirements: []
|
|
158
158
|
rubyforge_project:
|
|
159
|
-
rubygems_version: 2.6.
|
|
159
|
+
rubygems_version: 2.6.13
|
|
160
160
|
signing_key:
|
|
161
161
|
specification_version: 4
|
|
162
162
|
summary: An highly opinionated test configuration for Jekyll sites.
|