Skip to content

Commit 476eb39

Browse files
committed
Updates for Ruby 3.0.0 and 1st time run
Added webrick to gemfile, needed in for Jekyll on ruby 3.x (jekyll/jekyll#8523) Also added bundle install to the readme guide for 1st time users
1 parent 3e8b40d commit 476eb39

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
99
gem "jekyll-paginate", "~> 1.1"
1010

1111
gem "jekyll-redirect-from", "~> 0.16.0"
12+
13+
gem "webrick", "~> 1.7"

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ Fork the repository so you can make changes, commit them to your own repository
1919

2020
git clone https://github.com/{your-github}/node-red.github.io
2121

22-
Then run jekyll:
22+
First time you run jeykll you need to do bundle install 1st for the dependencies,
2323

2424
cd node-red.github.io
25+
bundle install
2526
jekyll serve -w
2627

2728
Once the site is built and running you can preview it at [`http://127.0.0.1:4000/`](http://127.0.0.1:4000/).

0 commit comments

Comments
 (0)