diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 279f3ec1..a7b81128 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,3 +31,5 @@ jobs: cname: "www.markdowntutorial.com" # Default is to not use a cname actor: "" # Default is the GITHUB_ACTOR pre_build_commands: "" # Installing additional dependencies (Arch Linux) + ruby_ver: 2.7.5 + bundler_ver: 2.1.4 diff --git a/.gitignore b/.gitignore index b90053c4..dec3c18f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ .DS_Store /.rbenv-version -/.ruby-version .sass-cache _site/ Gemfile.lock diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 00000000..a603bb50 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.7.5 diff --git a/.vscode/settings.json b/.vscode/settings.json index fd807286..7cc6e0a2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,8 @@ }, "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[ruby]": { + "editor.defaultFormatter": "Shopify.ruby-lsp" } } diff --git a/Gemfile b/Gemfile index 76131f56..433f0afd 100644 --- a/Gemfile +++ b/Gemfile @@ -8,3 +8,5 @@ gem "jekyll-assets", group: :jekyll_plugins gem "sprockets", "~> 3.7" gem 'rake' + +gem "ffi", "1.15"