jekyll-test 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +7 -4
- data/CHANGELOG.md +10 -1
- data/README.md +16 -4
- data/jekyll-test.gemspec +1 -1
- data/lib/jekyll/test/travis.rake +1 -1
- data/lib/jekyll/test/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 96f1b22958852090e21598daea53b41509b37cb4cf1e2f747c8e49292c784a3d
|
4
|
+
data.tar.gz: 73335d98cc5b9b264b31d13a3a882b6aa97945b03ea19a5578642c21f406b56c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2cdb10753c28cc98f1b4e931cda12e0195635878b83f5baf3f07ac842b42c75d6b44abafeb84679b937b45110cf4a81a190d57dcda57c2d335eff010a3004ca7
|
7
|
+
data.tar.gz: 2644d982b8e6680a2258354d51573100f65327f2720d46b3e0a3a2adfc51b564fe7652413a842f984616476ce0c3e378297e8168e7cd1f7539d838d58d0d50f3
|
data/.travis.yml
CHANGED
@@ -2,10 +2,13 @@ sudo: false
|
|
2
2
|
language: ruby
|
3
3
|
cache: bundler
|
4
4
|
rvm:
|
5
|
-
- 2.2.
|
6
|
-
- 2.3.
|
7
|
-
- 2.4.
|
8
|
-
|
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:
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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
|
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
|
-
|
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
|
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).
|
data/jekyll-test.gemspec
CHANGED
@@ -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.
|
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"
|
data/lib/jekyll/test/travis.rake
CHANGED
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.1.
|
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:
|
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.
|
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.
|
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.
|