-
Notifications
You must be signed in to change notification settings - Fork 18
/
Gemfile
67 lines (51 loc) · 1.18 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'nanoc'
gem 'icalendar' # ical files
gem 'kramdown'
# Kramdown math mode gems
gem 'kramdown-math-katex'
gem 'sassc'
gem 'typogruby'
# Needed for atom_feed in blogging helper
gem 'builder'
# Word counting gem (which takes special characters into account)
# for reading time
gem 'words_counted'
# For correct timezone
gem 'tzinfo-data'
gem 'tzinfo'
# Take screenshots for our banner image
gem 'puppeteer-ruby'
gem 'sass-embedded'
# Silences warnings that they will be no longer part of the standard library in Ruby 3.5
gem 'pstore'
gem 'logger'
# Not found in Github actions
gem 'terser'
group :development do
gem 'adsf'
# puma instead of thin, see https://github.com/nanoc/nanoc/issues/1499
gem 'puma'
gem 'highline'
gem 'terminal-notifier'
gem 'terminal-notifier-guard'
gem 'nanoc-live'
end
group :production do
# Autoprefixing for class
gem 'autoprefixer-rails'
gem 'htmlcompressor'
gem 'yui-compressor'
# Compiling reports from .md to .pdf
gem 'pandoc-ruby'
gem 'uglifier', '>= 4.0.0'
gem 'rainpress'
end
group :nanoc do
gem 'guard-nanoc'
end
group :test do
# Checks
gem 'w3c_validators'
end