Skip to content

Commit

Permalink
Allow you to specify the rouge version via an environemnt variable fo…
Browse files Browse the repository at this point in the history
…r testing (#6138)

Merge pull request 6138
  • Loading branch information
parkr authored and jekyllbot committed Jun 15, 2017
1 parent ae8889a commit 79b3f00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -17,6 +17,8 @@ matrix:
env: TEST_SUITE=fmt
- rvm: *ruby1
env: TEST_SUITE=default-site
- rvm: *ruby1
env: ROUGE_VERSION=1.11.1 # runs everything with this version
exclude:
- rvm: *jruby
env: TEST_SUITE=cucumber
Expand Down
2 changes: 1 addition & 1 deletion jekyll.gemspec
Expand Up @@ -38,6 +38,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency("liquid", "~> 4.0")
s.add_runtime_dependency("mercenary", "~> 0.3.3")
s.add_runtime_dependency("pathutil", "~> 0.9")
s.add_runtime_dependency("rouge", "~> 1.7")
s.add_runtime_dependency("rouge", "~> #{ENV["ROUGE_VERSION"] || "1.7"}")
s.add_runtime_dependency("safe_yaml", "~> 1.0")
end

0 comments on commit 79b3f00

Please sign in to comment.