-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
58 lines (53 loc) · 2.9 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# Author: Hari Sekhon
# Date: 2022-05-13 16:20:04 +0100 (Fri, 13 May 2022)
#
# vim:ts=4:sts=4:sw=4:et
#
# https://github.com/HariSekhon/CI-CD
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
# ============================================================================ #
# G e m f i l e
# ============================================================================ #
# needed for Netlify or manual build
source 'https://rubygems.org'
gem 'github-pages'
group :jekyll_plugins do
gem 'jekyll-optional-front-matter'
gem 'jekyll-theme-cayman'
# automatically installed
#gem 'jekyll-titles-from-headings'
end
# on Alpine, installing 'json' and 'bigdecimal' gems solves errors like this:
#
# bundler: failed to load command: jekyll (/usr/bin/jekyll)
# Traceback (most recent call last):
# 20: from /usr/bin/bundle:23:in `<main>'
# 19: from /usr/bin/bundle:23:in `load'
# 18: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/exe/bundle:37:in `<top (required)>'
# 17: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/friendly_errors.rb:130:in `with_friendly_errors'
# 16: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/exe/bundle:49:in `block in <top (required)>'
# 15: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/cli.rb:24:in `start'
# 14: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/vendor/thor/lib/thor/base.rb:485:in `start'
# 13: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/cli.rb:30:in `dispatch'
# 12: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/vendor/thor/lib/thor.rb:392:in `dispatch'
# 11: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/vendor/thor/lib/thor/invocation.rb:127:in `invoke_command'
# 10: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
# 9: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/cli.rb:497:in `exec'
# 8: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/cli/exec.rb:28:in `run'
# 7: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/cli/exec.rb:63:in `kernel_load'
# 6: from /usr/lib/ruby/gems/2.7.0/gems/bundler-2.2.2/lib/bundler/cli/exec.rb:63:in `load'
# 5: from /usr/bin/jekyll:23:in `<top (required)>'
# 4: from /usr/bin/jekyll:23:in `load'
# 3: from /usr/lib/ruby/gems/2.7.0/gems/jekyll-3.9.2/exe/jekyll:8:in `<top (required)>'
# 2: from /usr/lib/ruby/gems/2.7.0/gems/jekyll-3.9.2/exe/jekyll:8:in `require'
# 1: from /usr/lib/ruby/gems/2.7.0/gems/jekyll-3.9.2/lib/jekyll.rb:29:in `<top (required)>'
# /usr/lib/ruby/gems/2.7.0/gems/jekyll-3.9.2/lib/jekyll.rb:29:in `require': cannot load such file -- json (LoadError)
gem 'json'
gem 'bigdecimal'