From 752047b26647cba0252d85f8c3d3ed86c6a1f2db Mon Sep 17 00:00:00 2001 From: Albert Dellor <46529526+dell-datascience@users.noreply.github.com> Date: Sun, 21 Jul 2024 11:04:02 +0100 Subject: [PATCH] Update Gemfile and Netlify configuration to use Ruby version 2.7.2 --- .ruby-version | 1 + Gemfile | 12 +++++------- netlify.toml | 1 + 3 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 .ruby-version diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..fbafd6b --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.7.2 \ No newline at end of file diff --git a/Gemfile b/Gemfile index c1d76ca..b52e615 100644 --- a/Gemfile +++ b/Gemfile @@ -1,12 +1,10 @@ source 'https://rubygems.org' -gem 'jekyll' -# gem 'jekyll-macro' # Include your necessary plugins here +ruby '2.7.2' # Add this line -# If you are using GitHub Pages, you can include the GitHub Pages gem -gem 'github-pages', group: :jekyll_plugins +gem 'jekyll', '~> 4.2.0' +gem 'jekyll-macro' # Include your necessary plugins here -# Other plugins and dependencies group :jekyll_plugins do - gem 'github-pages' # Optional if you are using GitHub Pages as well - end \ No newline at end of file + gem 'github-pages' # Optional if you are using GitHub Pages as well +end diff --git a/netlify.toml b/netlify.toml index 15fb657..7fbd19c 100644 --- a/netlify.toml +++ b/netlify.toml @@ -4,3 +4,4 @@ [build.environment] BUNDLE_PATH = "vendor/bundle" + RUBY_VERSION = "2.7.2" \ No newline at end of file