Skip to content

Commit

Permalink
update the dependencies for Netlify (#389)
Browse files Browse the repository at this point in the history
* updating missing gems and jekyll

* add netlify.toml file
  • Loading branch information
Tayebsed93 authored Oct 2, 2024
1 parent 30bc50d commit c65df8f
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
ruby-version: 3.3.5
- name: Build with Jekyll
run: |
cd docs
Expand Down
7 changes: 6 additions & 1 deletion docs/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@ source "https://rubygems.org"
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "webrick"
gem "jekyll", "~> 4.2.1"
gem "jekyll", "~> 4.2.2"
gem "nokogiri"
gem 'logger'
gem 'csv'
gem 'base64'
gem 'bigdecimal'
gem 'ostruct'
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
Expand Down
33 changes: 23 additions & 10 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.5)
public_suffix (>= 2.0.2, < 6.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
base64 (0.2.0)
bigdecimal (3.1.8)
colorator (1.1.0)
concurrent-ruby (1.2.2)
concurrent-ruby (1.3.4)
csv (3.3.0)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.16.3)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86_64-darwin)
ffi (1.17.0-x86_64-linux-gnu)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (1.14.1)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
jekyll (4.2.2)
addressable (~> 2.4)
Expand Down Expand Up @@ -49,9 +54,10 @@ GEM
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.4)
listen (3.8.0)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.6.1)
mercenary (0.4.0)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
Expand All @@ -63,14 +69,15 @@ GEM
racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux)
racc (~> 1.4)
ostruct (0.6.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (5.0.3)
public_suffix (6.0.1)
racc (1.7.3)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
rb-inotify (0.11.1)
ffi (~> 1.0)
rexml (3.2.6)
rexml (3.3.8)
rouge (3.30.0)
rubyzip (2.3.2)
safe_yaml (1.0.5)
Expand All @@ -87,15 +94,21 @@ PLATFORMS
x86_64-darwin-20
x86_64-darwin-21
x86_64-darwin-22
x86_64-darwin-23
x86_64-linux

DEPENDENCIES
jekyll (~> 4.2.1)
base64
bigdecimal
csv
jekyll (~> 4.2.2)
jekyll-feed (~> 0.12)
jekyll-relative-links
jekyll-remote-theme
logger
minima (~> 2.5)
nokogiri
ostruct
tzinfo (~> 1.2)
tzinfo-data
wdm (~> 0.1.1)
Expand Down
6 changes: 6 additions & 0 deletions docs/netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build]
publish = "_site"
command = "bundle exec jekyll build"

[build.environment]
RUBY_VERSION = "3.2.5"

0 comments on commit c65df8f

Please sign in to comment.