-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (35 loc) · 1.7 KB
/
Copy pathGemfile
File metadata and controls
45 lines (35 loc) · 1.7 KB
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
source 'https://rubygems.org'
# ESPERIMENTO (branch explore/github-actions-jekyll4): al posto della gem
# "github-pages" (che pinnava tutto a Jekyll 3.10 + libSass 1.x per la
# pipeline legacy "Deploy from a branch"), Jekyll e i plugin sono dichiarati
# direttamente: la build/pubblicazione passerebbe a un workflow GitHub
# Actions, quindi le versioni le scegliamo noi qui.
gem "jekyll", "~> 4.3"
# markdown: kramdown, input: GFM (vedi _config.yml). Prima arrivava come
# dipendenza transitiva della gem github-pages; ora va dichiarata.
gem "kramdown-parser-gfm"
# Dart Sass al posto della libSass 1.x deprecata pinnata da github-pages.
gem "jekyll-sass-converter", "~> 3.0"
group :jekyll_plugins do
gem "jekyll-seo-tag"
gem "jekyll-redirect-from"
# Aggiunge automaticamente target="_blank" rel="noopener noreferrer" ai
# link esterni nell'HTML generato — il sito oggi non lo fa in nessun modo.
gem "jekyll-target-blank"
end
# Non è un plugin Jekyll: gira in CI dopo la build per controllare link
# rotti, immagini senza alt, anchor interni non validi.
gem "html-proofer", group: :test
# Ruby 3.4+ stopped shipping these as default gems; Jekyll/Liquid still need them
gem 'logger'
gem 'bigdecimal'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data"
# Performance-booster for watching directories on Windows. Deve usare
# `platforms:` (meccanismo nativo di Bundler) e non un `if Gem.win_platform?`:
# quest'ultimo viene valutato quando il Gemfile viene letto, quindi su CI
# Linux la gem sparirebbe dal Gemfile mentre resta nel lockfile, mandando in
# conflitto la modalità frozen usata in CI.
gem "wdm", ">= 0.1.0", platforms: [:windows]
gem "webrick"
gem "rack", ">= 2.1.4"