Skip to content

Commit

Permalink
chore(deps): test against Jekyll v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyF committed Mar 23, 2019
1 parent 285fbee commit 6ae3123
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
17 changes: 14 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
language: ruby
cache: bundler
rvm:
- 2.6
- &latest_ruby 2.6
- 2.4
- 2.3
env:
- JEKYLL_VERSION="~> 3.8"
matrix:
include:
- # GitHub Pages
rvm: 2.5.3
env: GH_PAGES=true
- rvm: *latest_ruby
env: JEKYLL_VERSION=">= 4.0.0.pre.alpha1"

before_install:
- gem update --system
- gem install bundler
- gem update --system
- gem install bundler
before_script: bundle update
script: script/cibuild
branches:
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
source "https://rubygems.org"

gemspec

gem "github-pages" if ENV["GH_PAGES"]
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
2 changes: 1 addition & 1 deletion jemoji.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|

s.add_dependency "gemoji", "~> 3.0"
s.add_dependency "html-pipeline", "~> 2.2"
s.add_dependency "jekyll", "~> 3.0"
s.add_dependency "jekyll", ">= 3.0", "< 5.0"

s.add_development_dependency "bundler"
s.add_development_dependency "rake", "~> 12.0"
Expand Down

0 comments on commit 6ae3123

Please sign in to comment.