zeus.ugent.be/Gemfile

52 lines
961 B
Ruby
Raw Normal View History

2016-06-09 13:04:10 +00:00
# frozen_string_literal: true
source 'https://rubygems.org'
2017-04-23 13:27:43 +00:00
gem 'nanoc'
2017-01-26 14:53:10 +00:00
gem 'icalendar' # ical files
gem 'kramdown'
2021-02-26 14:24:40 +00:00
# Kramdown math mode gems
gem 'kramdown-math-katex'
2018-10-20 21:52:17 +00:00
gem 'sassc'
2018-03-08 21:44:19 +00:00
gem 'typogruby'
2017-01-26 14:53:10 +00:00
2016-07-26 18:08:42 +00:00
# Needed for atom_feed in blogging helper
gem 'builder'
2016-06-09 13:04:10 +00:00
2016-11-06 16:45:30 +00:00
# Word counting gem (which takes special characters into account)
# for reading time
2021-01-05 23:24:20 +00:00
gem 'words_counted', git: 'https://github.com/werthen/words_counted'
2016-11-06 16:45:30 +00:00
2016-06-09 13:04:10 +00:00
group :development do
gem 'adsf'
2021-02-26 11:32:02 +00:00
# puma instead of thin, see https://github.com/nanoc/nanoc/issues/1499
gem 'puma'
2016-08-14 08:12:19 +00:00
gem 'highline'
2017-04-20 12:20:32 +00:00
gem 'terminal-notifier'
2017-04-23 13:27:43 +00:00
gem 'terminal-notifier-guard'
2021-02-28 09:53:17 +00:00
gem 'nanoc-live'
2016-06-09 13:04:10 +00:00
end
2016-08-21 16:03:53 +00:00
2016-12-29 12:37:22 +00:00
group :production do
# Autoprefixing for class
gem 'autoprefixer-rails'
gem 'htmlcompressor'
2018-08-28 19:59:17 +00:00
gem 'yui-compressor'
2018-10-20 22:08:18 +00:00
# Compiling reports from .md to .pdf
gem 'pandoc-ruby'
gem 'uglifier', '>= 4.0.0'
gem 'rainpress'
2016-12-29 12:37:22 +00:00
end
2016-08-21 16:03:53 +00:00
group :nanoc do
gem 'guard-nanoc'
end
2016-12-12 16:52:26 +00:00
group :test do
# Checks
gem 'w3c_validators'
end