-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
45 lines (42 loc) · 1.54 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
source 'https://rubygems.org'
gem 'activesupport' # for helpful extension methods
gem 'builder' # for XML stuff, such as sitemap and atom feeds
gem 'chunky_png' # for PNG generation of qrcodes
gem 'compass' # for advanced CSS
gem 'ffi-hunspell', git: 'https://github.com/cdchapman/ffi-hunspell'
gem 'git' # for version history and tagging info
gem 'haml'
gem 'html5small' # for compact HTML
gem 'image_optimizer' # to compress images
gem 'linkeddata'
gem 'locale'
gem 'nanoc' # for compiling the site
gem 'nanoc-cachebuster', git: 'https://github.com/cdchapman/nanoc-cachebuster', branch: 'nanoc-4'
gem 'nokogiri' # for parsing HTML
gem 'nokogumbo' # for parsing HTML5
gem 'pandoc-ruby' # for benefit reports in ConTeXt
gem 'rainpress' # for compact CSS
gem 'rest-client' # for downloads of external resources
gem 'rqrcode' # for qrcodes
gem 'rubypants-unicode'
gem 'shortly', git: 'https://github.com/FLEWID-AB/shortly' # for URL shortening
gem 'uglifier' # for compact JavaScript
gem 'vcardigan' # for vCards
gem 'pragmatic_segmenter'
group :development, optional: true do
gem 'adsf' # for nanoc view
gem 'ghi' # for GitHub issues
gem 'guard'
gem 'guard-livereload'
gem 'guard-nanoc'
gem 'guard-rake'
end
group :test, optional: true do
gem 'fuubar'
gem 'minitest'
gem 'rake'
gem 'rspec'
gem 'rspec-mocks'
gem 'rubocop'
gem 'simplecov', require: false
end