From eb0e22736651d49b482179f200907e2827bd785c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnar=C3=B6k?= Date: Tue, 20 Aug 2024 14:06:18 -0700 Subject: [PATCH] Specify Ruby version for local development. (#10) I wanted a faster iteration loop so added some infra for direct local usage. --- .bundle/config | 2 ++ .gitignore | 5 ++++- .ruby-version | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .bundle/config create mode 100644 .ruby-version diff --git a/.bundle/config b/.bundle/config new file mode 100644 index 0000000..2369228 --- /dev/null +++ b/.bundle/config @@ -0,0 +1,2 @@ +--- +BUNDLE_PATH: "vendor/bundle" diff --git a/.gitignore b/.gitignore index bc82f4c..5ad2f2e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,7 @@ crash.log # Nanoc output and temporary files output/ -tmp/ \ No newline at end of file +tmp/ + +# Bundler vendor +vendor/bundle/ diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..4772543 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.3.2