-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (28 loc) · 746 Bytes
/
Gemfile
File metadata and controls
34 lines (28 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
source "https://rubygems.org"
gem "activesupport"
gem "csv"
gem "dotenv"
gem "ffi"
gem "mutex_m" # TODO: remove direct dependency on mutex_m once govuk_tech_docs updates from activesupport-7.0.8.1.
gem "rake"
gem "sanitize"
gem "webmock"
gem "govuk_tech_docs"
gem "middleman"
gem "middleman-search_engine_sitemap"
gem "git"
gem "html-pipeline", "~>2.0" # TODO: remove direct dependency + constraint for html-pipeline once govuk_tech_docs is fixed.
gem "mdl"
gem "govuk_publishing_components"
gem "govuk_schemas"
# GitHub API
gem "faraday-http-cache"
gem "faraday_middleware"
gem "octokit"
group :test, :development do
gem "byebug"
gem "capybara"
gem "rspec"
gem "rubocop-govuk", require: false
gem "simplecov", require: false
end