forked from betagouv/beta.gouv.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
42 lines (31 loc) · 737 Bytes
/
Gemfile
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
35
36
37
38
39
40
41
42
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.3.4'
gem 'base64'
gem 'csv'
gem 'jekyll'
gem 'activemodel'
gem 'aws-sdk-s3'
group :jekyll_plugins do
gem 'jekyll-redirect-from'
end
group :test, :development do
gem 'rubocop'
gem 'rubocop-rake'
gem 'rubocop-rspec'
end
group :test do
gem 'debug'
gem 'guard'
gem 'guard-rspec'
gem 'html-proofer'
gem 'jsonlint'
gem 'kwalify'
gem 'opengraph_parser'
gem 'rspec'
end
gem 'rake', group: %i[default test]
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Performance-booster for watching directories on Windows
gem 'wdm', '~> 0.1.0' if Gem.win_platform?