-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
35 lines (33 loc) · 1.58 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
source 'https://rubygems.org'
gem 'nanoc' # for compiling the site
gem 'compass' # for advanced CSS
gem 'kramdown' # for advanced markdown
gem 'nokogiri' # for parsing HTML
gem 'rainpress' # for compact CSS
gem 'uglifier' # for compact JavaScript
gem 'html5small' # for compact HTML
gem 'activesupport' # for helpful extension methods
gem 'vcardigan' # for vCards
gem 'rqrcode' # for qrcodes
gem 'chunky_png' # for PNG generation of qrcodes
gem 'optipng' # to compress the outputted qrcode
gem 'shortly' # for URL shortening
gem 'html_spellchecker', git: 'https://github.com/cdchapman/HTML-Spellchecker', branch: 'mark'
gem 'rest-client' # for downloads of external resources
gem 'rubypants-unicode'
gem 'linkeddata'
gem 'rdf-vocab', git: 'https://github.com/ruby-rdf/rdf-vocab.git', branch: 'develop' # for latest code (included in `linkeddata` gem)
gem 'rdf', git: 'https://github.com/ruby-rdf/rdf.git', branch: 'develop' # for latest code (included in `linkeddata` gem)
gem 'nanoc-cachebuster', git: 'https://github.com/cdchapman/nanoc-cachebuster', branch: 'nanoc-4'
gem 'rouge'
gem 'haml'
gem 'pandoc-ruby' # for benefit reports in ConTeXt
gem 'git' # for version history and tagging info
gem 'builder' # for sitemap
group :development, optional: true do
gem 'guard'
gem 'guard-nanoc'
gem 'guard-livereload'
gem 'adsf' # for nanoc view
gem 'ghi' # for GitHub issues
end