-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (29 loc) · 746 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
# frozen_string_literal: true
source 'https://rubygems.org'
# nanoc itself
gem 'nanoc', '>= 4.11'
# Since nanoc 4.11.21, clonefile enabled copy-on-write
# See https://github.com/nanoc/nanoc/pull/1509
# See https://github.com/nanoc/nanoc/pull/1511
gem 'clonefile'
# nanoc view
gem 'adsf'
gem 'rack'
# needed when using Ruby 3, webrick not bundled anymore with Ruby
# (see https://www.ruby-lang.org/en/news/2020/12/25/ruby-3-0-0-released/)
gem 'webrick'
# nanoc filters
gem 'kramdown'
gem 'htmlcompressor'
gem 'mimemagic'
gem 'image_size'
gem 'htmlentities'
gem 'natural_sort'
gem 'i18n'
group :development do
# debug
#gem 'debase', require: false
#gem 'ruby-debug-ide', require: false
# lint
gem 'solargraph', require: false
end