zeus.ugent.be/Gemfile

52 lines
961 B
Ruby
Raw Normal View History

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