Skip to content

Commit 68a9938

Browse files
committed
Ruby 및 의존성 업데이트
- Ruby 2.7.4 -> 3.4.5 - Jekyll Plugin 및 기타 의존성 업데이트 - Bootstrap 4.3.1 -> 5.3.3 - 그 외 의존성 변경에 따른 업데이트 - GitHub Actions deploy workflow 반영 등
1 parent 9bf0b7f commit 68a9938

File tree

15 files changed

+220
-328
lines changed

15 files changed

+220
-328
lines changed

.github/workflows/deploy-www.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
- name: Set up Node.js
1616
uses: actions/setup-node@v3
1717
with:
18-
node-version: 16.13.2
18+
node-version: 22.17.1
1919
- name: Install node dependencies
2020
run: |
2121
npm install -g yarn
2222
yarn install
23-
- name: Set up Ruby 2.7
23+
- name: Set up Ruby 3.4
2424
uses: ruby/setup-ruby@v1
2525
with:
26-
ruby-version: 2.7.4
26+
ruby-version: 3.4.5
2727
bundler-cache: true
2828
- name: Install ruby dependencies
2929
run: |

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
3.4.5

Gemfile

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
source "https://rubygems.org"
2-
ruby "2.7.4"
2+
ruby "3.4.5"
3+
4+
# Ruby 3.4+ required gems (removed from standard library)
5+
gem "csv"
6+
gem "base64"
7+
gem "bigdecimal"
8+
9+
# Core Jekyll with Ruby 3.4 compatibility - using patched versions
10+
gem "jekyll", "~> 4.3"
11+
gem "faraday-retry"
12+
13+
# Sass - using older version to avoid deprecation warnings
14+
gem "sass-embedded", "~> 1.70.0"
15+
16+
# Web server for local development
17+
gem "webrick"
318

419
group :jekyll_plugins do
5-
gem "github-pages", :git => "https://github.com/9bow/pages-gem.git"
620
gem "jekyll-paginate-v2"
7-
gem "jekyll-autoprefixer"
21+
# gem "jekyll-autoprefixer" # Temporarily disabled for Ruby 3.4 compatibility
822
gem "jekyll-github-metadata"
9-
gem "execjs", "2.7.0"
23+
gem "jekyll-feed"
24+
gem "jekyll-sitemap"
25+
gem "jekyll-redirect-from"
26+
gem "jekyll-seo-tag"
1027
gem 'tzinfo'
1128
gem 'tzinfo-data'
1229
end

0 commit comments

Comments
 (0)