Skip to content

Commit

Permalink
upgrade Ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
jSherz committed Jan 4, 2025
1 parent c9402bf commit ab358f1
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Ruby and install dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.6
ruby-version: 3.4.1
bundler-cache: true

- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.1
2 changes: 1 addition & 1 deletion .run/jekyll build.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</COVERAGE_PATTERN>
</EXTENSION>
<EXTENSION ID="org.jetbrains.plugins.ruby.rails.run.RailsRunConfigurationExtension" SCRATCH_USE_RAILS_RUNNER="false" />
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/vendor/bundle/ruby/3.1.0/bin/jekyll" />
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/vendor/bundle/ruby/3.4.0/bin/jekyll" />
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="build" />
<method v="2" />
</configuration>
Expand Down
2 changes: 1 addition & 1 deletion .run/jekyll serve.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</COVERAGE_PATTERN>
</EXTENSION>
<EXTENSION ID="org.jetbrains.plugins.ruby.rails.run.RailsRunConfigurationExtension" SCRATCH_USE_RAILS_RUNNER="false" />
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/vendor/bundle/ruby/3.1.0/bin/jekyll" />
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="$MODULE_DIR$/vendor/bundle/ruby/3.4.0/bin/jekyll" />
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="serve" />
<method v="2" />
</configuration>
Expand Down
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
source 'https://rubygems.org'

ruby '3.3.6'
ruby '3.4.1'

gem 'jekyll'
gem 'jekyll-seo-tag'
gem 'jekyll-sitemap'
gem 'jekyll-feed'

gem 'base64'
gem 'csv'
gem 'logger'
19 changes: 11 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,18 @@ GEM
specs:
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.3.4)
csv (3.3.2)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86_64-linux-gnu)
ffi (1.17.0)
forwardable-extended (2.6.0)
google-protobuf (4.28.2-arm64-darwin)
bigdecimal
rake (>= 13)
google-protobuf (4.28.2-x86_64-linux)
google-protobuf (4.28.2)
bigdecimal
rake (>= 13)
http_parser.rb (0.8.0)
Expand Down Expand Up @@ -56,6 +54,7 @@ GEM
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
logger (1.6.4)
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
Expand All @@ -78,16 +77,20 @@ GEM

PLATFORMS
arm64-darwin-23
arm64-darwin-24
x86_64-linux

DEPENDENCIES
base64
csv
jekyll
jekyll-feed
jekyll-seo-tag
jekyll-sitemap
logger

RUBY VERSION
ruby 3.3.6p108
ruby 3.4.1p0

BUNDLED WITH
2.5.22
2.6.2
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Unless you're a big fan of raw Markdown, you can view the blog at [https://jsher

## Developing and publishing

Install rbenv and then Ruby version 3.3.6
Install rbenv and then Ruby version 3.4.1

```bash
rbenv install 3.3.6
rbenv install 3.4.1
```

To run a development server on port 4000, use:
Expand Down

0 comments on commit ab358f1

Please sign in to comment.