Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2019-09-02 10:45:47 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-09-02 10:45:47 +0300
commite89a081706de5edaa29b4c04b6079a9ab59d172f (patch)
tree1018125d8afe72f6d2c3bf12ca63ffad526aa19f /Gemfile
parentf4007210de9318e408274259cd424020d8c5f72b (diff)
Roll gem versions forward
- Also removes mdl from project. - Pins rouge to 3.7.0.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile12
1 files changed, 5 insertions, 7 deletions
diff --git a/Gemfile b/Gemfile
index 51b5cda6..62600891 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,14 +1,13 @@
source 'https://rubygems.org'
-# Use the development branch of Nanoc to test
-# https://github.com/nanoc/nanoc/issues/1445#issuecomment-525607877
-gem 'nanoc', github: 'nanoc/nanoc', ref: '94422c7'
-#gem 'nanoc', '~> 4.10'
-#
+gem 'nanoc', '~> 4.10'
gem 'adsf', '~> 1.4'
gem 'adsf-live', '~> 1.4'
gem 'sassc', '~> 2.0'
-gem 'rouge', '~> 3.2'
+# Later versions of Rouge cause nanoc to hang when
+# processing some JSON fenced code blocks.
+# Unpin when fixed (current latest version is 3.9.0).
+gem 'rouge', '3.7.0'
gem 'rake', '~> 12.3'
group :nanoc do
@@ -29,5 +28,4 @@ group :test, :development do
gem 'highline', '~> 2.0'
gem 'rspec', '~> 3.5'
gem 'pry-byebug', '~> 3.7', require: false
- gem 'mdl', '~> 0.5.0'
end