diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2019-06-17 17:32:05 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-17 17:32:05 -0600 |
| commit | fe8afee4c2193557d004affed4a36f5cc5ae71f3 (patch) | |
| tree | a152269c71c13b145c8f84fa803f220b68ae9cb0 /Gemfile | |
| parent | 87a9f2d9ce557087d642cb0d66ac2d841f18d568 (diff) | |
resolves #1102 add support for cgi-style options on source language when highlighting with Rouge (PR #1103)
- add support for cgi-style options on source language when syntax highlighting with Rouge
- upgrade Rouge to 3.4.0
- test against Rouge ~> 2.0.0 in CI matrix
- regenerate chronicles example
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -9,8 +9,7 @@ gem 'prawn-table', git: 'https://github.com/prawnpdf/prawn-table.git', ref: '515 # Add unicode (preferred) or activesupport to transform case of text containing multibyte chars on Ruby < 2.4 gem 'unicode', require: false if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0') #gem 'activesupport', '4.2.7.1', require: false if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.4.0') -# NOTE rouge is defined here to control version and to verify it gets lazy loaded -gem 'rouge', '2.2.1', require: false +gem 'rouge', ENV['ROUGE_VERSION'], require: false if ENV.key? 'ROUGE_VERSION' group :docs do gem 'yard', require: false |
