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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57a20ed116645e39f276c63220bc22fa4c49f2af
4
- data.tar.gz: eb980c363e9b903d170c641ef14ce973489a379d
3
+ metadata.gz: db31938436d88951a7e43f1faa0583673f69ef72
4
+ data.tar.gz: d8b7d5cecd4b880584706edfe2c791c383b82f42
5
5
  SHA512:
6
- metadata.gz: 13cfd511ae8e100fe13afe56ebcc9157a68e76cf784158d4ba99ed57a29c6ad64f6bf9b2f990240800cc9f0350c313bfe0431704244396027b7b3fd87cbf039d
7
- data.tar.gz: a52484d8a079cd4f7ab576d32e1df412ca93027b66c57ea1595bdc77557f56d9794406906c493c1510302aa066eadb1f864526e910de02a34bbb5a29a4cfccfe
6
+ metadata.gz: fc01e09b2ea3caf0401fde9fd6fa2b3e4f0d7bb3103ee4833ac9c49547405a7272ba18d6fdaa6414520c05bfd0b032b6e7e54227f342b910d22883279383a7f7
7
+ data.tar.gz: 30e9df6f890b61bc43f37a0c454aea4b65c12054c6c97de5aaba55cfb43cfd701d273210f5f205c392cdd33e186fbe9acab21dafb550f3db5700c78d8f592ec6
@@ -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
 
@@ -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.1"]
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
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Test
3
- VERSION = "1.0.0"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
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.0.0
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-08-17 00:00:00.000000000 Z
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.11
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.