-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
55 lines (42 loc) · 1.08 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
source 'https://rubygems.org'
group 'nanoc' do
gem 'nanoc'
gem 'nanoc-cli'
gem 'nanoc-core'
gem 'nanoc-live', git: 'https://github.com/nanoc/nanoc', glob: 'nanoc-live/*.gemspec', branch: 'main'
gem 'webrick', '~> 1.7' # Ruby 3.x doesn't ship with WEBrick anymore
gem 'nanoc-image-compressor'
gem 'nanoc-javascript-concatenator'
gem 'nanoc-dart-sass'
end
gem 'dotenv', '~> 2'
gem 'terser', '~> 1.1'
# Blogging
gem 'activesupport'
# Minify
gem 'rainpress', '~>1.0' # CSS Compressor
gem 'jsmin', '~>1.0'
# Markdown & Typography
gem "kramdown", "~> 2.4"
gem 'kramdown-parser-gfm'
gem 'rouge' # syntax highlighting
gem 'typogruby' # Fallback when Redcarpet is not available
# Uglifying
gem 'uglifier'
gem 'multi_json', '~> 1.3' # needed by uglifier
# needed for tasks
gem 'rake'
gem 'terminal-notifier'
# needed to run nanoc autocompile
gem 'rack', ">= 2.0.6"
gem 'mime-types'
gem 'i18n'
# needed to run nanoc view
gem 'adsf'
# needed to run nanoc deploy
gem 'systemu'
# needed to run validations
gem 'w3c_validators'
gem 'nokogiri', ">= 1.8.5"
# XML Sitemap
gem 'builder'