From ab91aa279148794d13078c0451ec83be22931581 Mon Sep 17 00:00:00 2001 From: Michele Bologna Date: Sat, 11 May 2019 12:19:13 +0200 Subject: [PATCH 1/2] Fix: remove rbenv specific version If you are using rbenv and you try to `bundle install`: ``` % bundle install rbenv: version `2.5.1' is not installed (set by /var/home/michele/personal-website/.ruby-version) ``` With this PR we do not restrict users to have that particular version of Ruby installed via rbenv. Tested and works with: ``` % rbenv versions system * 2.6.3 ``` --- .ruby-version | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .ruby-version diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 73462a5..0000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.5.1 From 95cad76b8d2bba7fe3e9445553d6dc1923045cf3 Mon Sep 17 00:00:00 2001 From: Michele Bologna Date: Tue, 14 May 2019 22:57:32 +0200 Subject: [PATCH 2/2] Fix: add .ruby-version to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 162edb6..201a810 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ .sass-cache _site/ Gemfile.lock +**/.ruby-version