jekyll-test 1.1.0 → 1.1.1

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
- SHA1:
3
- metadata.gz: db31938436d88951a7e43f1faa0583673f69ef72
4
- data.tar.gz: d8b7d5cecd4b880584706edfe2c791c383b82f42
2
+ SHA256:
3
+ metadata.gz: 96f1b22958852090e21598daea53b41509b37cb4cf1e2f747c8e49292c784a3d
4
+ data.tar.gz: 73335d98cc5b9b264b31d13a3a882b6aa97945b03ea19a5578642c21f406b56c
5
5
  SHA512:
6
- metadata.gz: fc01e09b2ea3caf0401fde9fd6fa2b3e4f0d7bb3103ee4833ac9c49547405a7272ba18d6fdaa6414520c05bfd0b032b6e7e54227f342b910d22883279383a7f7
7
- data.tar.gz: 30e9df6f890b61bc43f37a0c454aea4b65c12054c6c97de5aaba55cfb43cfd701d273210f5f205c392cdd33e186fbe9acab21dafb550f3db5700c78d8f592ec6
6
+ metadata.gz: 2cdb10753c28cc98f1b4e931cda12e0195635878b83f5baf3f07ac842b42c75d6b44abafeb84679b937b45110cf4a81a190d57dcda57c2d335eff010a3004ca7
7
+ data.tar.gz: 2644d982b8e6680a2258354d51573100f65327f2720d46b3e0a3a2adfc51b564fe7652413a842f984616476ce0c3e378297e8168e7cd1f7539d838d58d0d50f3
@@ -2,10 +2,13 @@ sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.2.7
6
- - 2.3.4
7
- - 2.4.1
8
- before_install: gem install bundler -v 1.15.3
5
+ - 2.2.9
6
+ - 2.3.6
7
+ - 2.4.3
8
+ - 2.5.0
9
+ before_install:
10
+ - gem update --system
11
+ - gem install bundler -v 1.16.1
9
12
  deploy:
10
13
  provider: rubygems
11
14
  api_key:
@@ -1,10 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.1.1
4
+
5
+ * Support Ruby 2.5.0
6
+ * Update travis builds to run on Ruby 2.4.3 (travis currently has issues with 2.5.0)
7
+
8
+ Rerun `rake jekyll:configure:travis` to get the new configuration.
9
+
3
10
  ## 1.1.0
4
11
 
5
- * Update travis configuration to fix SSL check errors. Rerun `rake jekyll:configure:travis` to get the new configuration.
12
+ * Update travis configuration to fix SSL check errors.
6
13
  * Update travis builds to run on Ruby 2.4.2
7
14
 
15
+ Rerun `rake jekyll:configure:travis` to get the new configuration.
16
+
8
17
  ## 1.0.0
9
18
 
10
19
  * Added `jekyll:configure:travis` task to automatically configure travis matrix builds.
data/README.md CHANGED
@@ -8,28 +8,40 @@ It provides two rake tasks:
8
8
 
9
9
  `jekyll:check_external_links` will check all outgoing links as well. This is a separate task as this often fails due to network errors, etc, and you don't want to depend on it passing. Use it for information only.
10
10
 
11
+ ## Requirements
12
+
13
+ * Ruby 2.2 or higher (`ruby -v` to check version)
14
+ * Bundler (`gem install bundler` if it's not there)
15
+
11
16
  ## Usage
12
17
 
13
- Add this line to your site's Gemfile and run `bundle`:
18
+ Add `jekyll-test` to your site's `Gemfile` (or just create the file with the following content if it doesn't exist) and run `bundle`:
14
19
 
15
20
  ```ruby
21
+ source "https://rubygems.org"
22
+
23
+ gem 'rake'
24
+ gem 'github-pages'
25
+
16
26
  group :test do
17
27
  gem 'jekyll-test'
18
28
  end
19
29
  ```
20
30
 
21
- In your Rakefile, then add:
31
+ Then add this to `Rakefile` (or create a file with just this in it if you don't have one):
22
32
 
23
33
  ```ruby
24
34
  require 'jekyll/test/tasks'
25
35
  ```
26
36
 
27
- We suggest making `jekyll:check` your default task by adding this to your Rakefile:
37
+ We suggest making `jekyll:check` your default task by adding this line to `Rakefile` as well:
28
38
 
29
39
  ```rake
30
40
  task default: "jekyll:check"
31
41
  ```
32
42
 
43
+ You can then run `rake` and bingo, your site will be tested with `html-proofer`.
44
+
33
45
  ### Travis configuration
34
46
 
35
47
  To configure a travis build to run these tests, run:
@@ -54,4 +66,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/Floppy
54
66
 
55
67
  ## Code of Conduct
56
68
 
57
- Everyone interacting in the Jekyll::Test project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/jekyll-test/blob/master/CODE_OF_CONDUCT.md).
69
+ Everyone interacting in the Jekyll::Test project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/jekyll-test/blob/master/CODE_OF_CONDUCT.md).
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
28
  spec.require_paths = ["lib"]
29
29
 
30
- spec.required_ruby_version = ["~> 2.2", "< 2.5"]
30
+ spec.required_ruby_version = ["~> 2.2", "< 2.6"]
31
31
 
32
32
  spec.add_dependency "jekyll", "~> 3.0"
33
33
  spec.add_dependency "rspec", "~> 3.0"
@@ -11,7 +11,7 @@ namespace :jekyll do
11
11
  travis = {}
12
12
  travis = YAML.load_file(".travis.yml")
13
13
  # Update configuration
14
- travis["rvm"] = ["2.4.2"]
14
+ travis["rvm"] = ["2.4.3"]
15
15
  travis["sudo"] = false
16
16
  travis["cache"] = "bundler"
17
17
  travis["addons"] = {
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Test
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
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.1.0
4
+ version: 1.1.1
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-09-28 00:00:00.000000000 Z
11
+ date: 2018-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -148,7 +148,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
148
148
  version: '2.2'
149
149
  - - "<"
150
150
  - !ruby/object:Gem::Version
151
- version: '2.5'
151
+ version: '2.6'
152
152
  required_rubygems_version: !ruby/object:Gem::Requirement
153
153
  requirements:
154
154
  - - ">="
@@ -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.13
159
+ rubygems_version: 2.7.4
160
160
  signing_key:
161
161
  specification_version: 4
162
162
  summary: An highly opinionated test configuration for Jekyll sites.