-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
38 lines (32 loc) · 1.49 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
36
37
38
# frozen_string_literal: true
# Above is a magic comment, telling Ruby all string literals in the file
# are implicitly frozen, as if #freeze had been called on each of them.
# This improves application performance in memory allocation and garbage
# collection. Method's trying to modify strings will raise RuntimeError.
# Tells the Gemfile where to look for gems
source "https://rubygems.org"
gemspec
# In Ruby, '~>' is a twiddle-wakka, or pessimistic version constraint;
# it bounds the last digit below and the second to last digit above.
# For example:
# * '~>2.2' means '>= 2.2.0', '< 3.0',
# * '~>2.2.0' means '>= 2.2.0', '< 2.3.0', etc.
# Use of ~> can also be compounded with >=, !=, etc for complex setups.
# This ensures the current Jekyll version is running
gem "jekyll", "~> 4.3.2"
# If you have any plugins, put them here!
group :jekyll_plugins do
# gem "jekyll-wren", "~> 0.4" # Wren from gem install
gem "jekyll-remote-theme", "~> 0.4" # Wren remotely from GitHub
gem "jekyll-paginate", "~> 1.1" # Earliest tested version
gem "jekyll-feed", "~> 0.12" # Earliest tested version
gem "jekyll-seo-tag", "~> 2.1" # Earliest tested version
end
# Windows and JRuby do not include zoneinfo files, so bundle the
# tzinfo-data gem and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]