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:
authorAchilleas Pipinellis <axil@gitlab.com>2019-09-09 14:11:10 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-09-09 14:11:10 +0300
commit68a38f4bf0d69b9038e5d88816eebcd6471acc19 (patch)
tree4f85e117d6f1af14b91c4c3f7890e36827f69776 /Gemfile
parent31cf3c6a89fff36f38e38ea4250748c243462cee (diff)
Add mdl for backwards compatibility
The docs lint job uses a universal Docker image which uses the gitlab-docs project. Since older GitLab versions also rely on it, we need to have the mdl gem for backwards compatibility.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 62600891..bedb3294 100644
--- a/Gemfile
+++ b/Gemfile
@@ -28,4 +28,6 @@ group :test, :development do
gem 'highline', '~> 2.0'
gem 'rspec', '~> 3.5'
gem 'pry-byebug', '~> 3.7', require: false
+ # Although we now use markdownlint-cli, we need the mdl gem for backwards compatibility
+ gem 'mdl'
end