# Summary since https://github.com/RobertoJBeltran/jekyll-terser/pull/1 has been merged, I'm removing the internal copy jekyll-terser and switching to https://github.com/RobertoJBeltran/jekyll-terser instead. also, refactored `Gemfile` a bit.
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'jekyll'
|
|
|
|
# Core plugins that directly affect site building
|
|
group :jekyll_plugins do
|
|
gem 'jekyll-archives'
|
|
gem 'jekyll-email-protect'
|
|
gem 'jekyll-feed'
|
|
gem 'jekyll-get-json'
|
|
gem 'jekyll-imagemagick'
|
|
gem 'jekyll-jupyter-notebook'
|
|
gem 'jekyll-link-attributes'
|
|
gem 'jekyll-minifier'
|
|
gem 'jekyll-paginate-v2'
|
|
gem 'jekyll-regex-replace'
|
|
gem 'jekyll-scholar'
|
|
gem 'jekyll-sitemap'
|
|
gem 'jekyll-tabs'
|
|
gem 'jekyll-terser', :git => "https://github.com/RobertoJBeltran/jekyll-terser.git"
|
|
gem 'jekyll-toc'
|
|
gem 'jekyll-twitter-plugin'
|
|
gem 'jemoji'
|
|
|
|
gem 'classifier-reborn' # used for content categorization during the build
|
|
end
|
|
|
|
# Gems for development or external data fetching (outside :jekyll_plugins)
|
|
group :other_plugins do
|
|
gem 'css_parser'
|
|
gem 'feedjira'
|
|
gem 'httparty'
|
|
gem 'observer' # used by jekyll-scholar
|
|
gem 'ostruct' # used by jekyll-twitter-plugin
|
|
gem 'terser' # used by jekyll-terser
|
|
# gem 'unicode_utils' -- should be already installed by jekyll
|
|
# gem 'webrick' -- should be already installed by jekyll
|
|
end
|