Skip to content

Commit

Permalink
Allow testing with Jekyll 4.x (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmaroli authored and DirtyF committed May 17, 2019
1 parent 782e34c commit 70875e3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .travis.yml
@@ -1,6 +1,15 @@
language: ruby language: ruby
cache: bundler cache: bundler
rvm: 2.4 rvm:
- 2.6
- 2.4


before_install: gem update --system
install: script/bootstrap install: script/bootstrap
script: script/cibuild script: script/cibuild

env:
matrix:
- JEKYLL_VERSION="~> 3.5"
- JEKYLL_VERSION="~> 3.8.0"
- JEKYLL_VERSION=">= 4.0.0.pre.alpha1"
2 changes: 2 additions & 0 deletions Gemfile
Expand Up @@ -2,3 +2,5 @@


source "https://rubygems.org" source "https://rubygems.org"
gemspec gemspec

gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
2 changes: 1 addition & 1 deletion minima.gemspec
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i) f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i)
end end


spec.add_runtime_dependency "jekyll", "~> 3.5" spec.add_runtime_dependency "jekyll", ">= 3.5", "< 5.0"
spec.add_runtime_dependency "jekyll-feed", "~> 0.9" spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1" spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"


Expand Down

0 comments on commit 70875e3

Please sign in to comment.