Skip to content

Commit 0f5b4cb

Browse files
committed
Some ruby updates
1 parent 48b7d1c commit 0f5b4cb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
.DS_Store
12
_site
23
.sass-cache
34
.jekyll-metadata
5+
.bundle
6+
vendor
47
Gemfile.lock

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
source 'https://rubygems.org'
2-
gem 'github-pages', group: :jekyll_plugins
2+
gem 'github-pages', group: :jekyll_plugins
3+
gem "webrick", "~> 1.8"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In ``scss/_variables.scss`` update the ``$fa-font-path`` to point to the ``../fo
3232

3333
# LOCAL BUILD
3434

35-
To build the site locally you have to have a working [Ruby](https://www.ruby-lang.org) ``2.4.x`` environment (you can use the [RVM](https://rvm.io/) Ruby version manager for this) and ``bundle`` and ``Jekyll`` installed.
35+
To build the site locally you have to have a working [Ruby](https://www.ruby-lang.org) ``3.2 .x`` environment (you can use the [RVM](https://rvm.io/) Ruby version manager for this) and ``bundle`` and ``Jekyll`` installed.
3636

3737
Install the ``GitHub pages`` gem from the ``Gemfile`` with:
3838

@@ -45,13 +45,13 @@ See also [this article](https://help.github.com/articles/setting-up-your-github-
4545
The site can then be build with:
4646

4747
```
48-
jekyll build
48+
bundle exec jekyll build
4949
```
5050

5151
And being served on http://127.0.0.1:4000 with:
5252

5353
```
54-
jekyll serve
54+
bundle exec jekyll serve
5555
```
5656

5757
[discord-badge]: https://img.shields.io/static/v1?logo=discord&label=discord&message=Join&color=blue

_config.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ google_analytics:
55
show_downloads: true
66
theme: jekyll-theme-cayman
77

8-
gems:
9-
- jekyll-mentions
10-
- jekyll-github-metadata
11-
128
sass:
139
load_paths:
1410
- assets/css # original sass

0 commit comments

Comments
 (0)