Skip to content

Commit f9bb8c6

Browse files
committed
Fixed dependencies for tagging
1 parent 55a25f9 commit f9bb8c6

File tree

3 files changed

+15
-20
lines changed

3 files changed

+15
-20
lines changed

Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source "https://rubygems.org"
1+
source 'https://rubygems.org'
22
# Hello! This is where you manage which Jekyll version is used to run.
33
# When you want to use a different version, change it below, save the
44
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
@@ -9,14 +9,14 @@ source "https://rubygems.org"
99
# Happy Jekylling!
1010
# gem "jekyll", "~> 4.2.2"
1111
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12-
gem "minima", "~> 2.5"
12+
gem 'minima', '~> 2.5', '>= 2.5.1'
1313
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1414
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15-
gem "github-pages", group: :jekyll_plugins
15+
gem 'github-pages', '~> 227', group: :jekyll_plugins
1616
# If you have any plugins, put them here!
1717
group :jekyll_plugins do
18-
gem "jekyll-feed"
19-
gem "jekyll-tagging"
18+
gem 'jekyll-feed', '>= 0.15.1'
19+
gem 'jekyll-tagging', '~> 1.1'
2020
end
2121

2222
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem

Gemfile.lock

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ GEM
2121
em-websocket (0.5.3)
2222
eventmachine (>= 0.12.9)
2323
http_parser.rb (~> 0)
24-
ethon (0.15.0)
24+
ethon (0.16.0)
2525
ffi (>= 1.15.0)
2626
eventmachine (1.2.7)
2727
execjs (2.8.1)
28-
faraday (2.5.2)
28+
faraday (2.6.0)
2929
faraday-net_http (>= 2.0, < 3.1)
3030
ruby2_keywords (>= 0.0.4)
31-
faraday-net_http (3.0.0)
31+
faraday-net_http (3.0.1)
3232
ffi (1.15.5)
3333
forwardable-extended (2.6.0)
3434
gemoji (3.0.1)
@@ -83,7 +83,7 @@ GEM
8383
octokit (~> 4.0)
8484
public_suffix (>= 3.0, < 5.0)
8585
typhoeus (~> 1.3)
86-
html-pipeline (2.14.2)
86+
html-pipeline (2.14.3)
8787
activesupport (>= 2)
8888
nokogiri (>= 1.4)
8989
http_parser.rb (0.8.0)
@@ -215,10 +215,6 @@ GEM
215215
minitest (5.16.3)
216216
nokogiri (1.13.9-arm64-darwin)
217217
racc (~> 1.4)
218-
nokogiri (1.13.9-x86_64-darwin)
219-
racc (~> 1.4)
220-
nokogiri (1.13.9-x86_64-linux)
221-
racc (~> 1.4)
222218
nuggets (1.6.1)
223219
octokit (4.25.1)
224220
faraday (>= 1, < 3)
@@ -257,20 +253,18 @@ GEM
257253
unf_ext (0.0.8.2)
258254
unicode-display_width (1.8.0)
259255
webrick (1.7.0)
260-
zeitwerk (2.6.0)
256+
zeitwerk (2.6.6)
261257

262258
PLATFORMS
263259
arm64-darwin-21
264-
x86_64-darwin-21
265-
x86_64-linux
266260

267261
DEPENDENCIES
268262
commonmarker (>= 0.23.6)
269-
github-pages
263+
github-pages (~> 227)
270264
http_parser.rb (~> 0.6.0)
271-
jekyll-feed
272-
jekyll-tagging
273-
minima (~> 2.5)
265+
jekyll-feed (>= 0.15.1)
266+
jekyll-tagging (~> 1.1)
267+
minima (~> 2.5, >= 2.5.1)
274268
tzinfo (~> 1.2)
275269
tzinfo-data
276270
wdm (~> 0.1.1)

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ remote_theme: pages-themes/[email protected]
3737
plugins:
3838
- jekyll-feed
3939
- jekyll-remote-theme
40+
- jekyll-tagging
4041

4142
# set timezone
4243
timezone: Europe/Berlin

0 commit comments

Comments
 (0)