-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (26 loc) · 742 Bytes
/
Gemfile
File metadata and controls
36 lines (26 loc) · 742 Bytes
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'jekyll'
gem 'rack', '>= 2.0.6'
gem 'sprockets', '~> 4.0.beta'
gem 'uglifier', '~> 4.0'
gem 'kramdown'
gem 'rouge', git: 'https://github.com/NSHipster/rouge.git',
branch: 'master'
gem 'nokogiri'
gem 'sassc'
gem 'ffi', '1.16.3'
gem 'twitter_cldr'
group :jekyll_plugins do
gem 'jekyll-assets', git: 'https://github.com/envygeeks/jekyll-assets.git',
branch: 'master'
gem 'jekyll-include-cache'
gem 'jekyll-scholar'
gem 'jekyll-tidy'
end
group :development do
gem 'foreman'
gem 'rake'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]