From 1cf377c98c319f1c48333b37fe3ecc7b12faf85c Mon Sep 17 00:00:00 2001 From: Filipp Pirozhkov Date: Wed, 2 May 2018 13:01:08 +0300 Subject: [PATCH] Remove ruby version constraint Having an `.rvmrc` file infers that the contributor has RVM isntalled, while this is not always the case, due to an number of alternatives. Not having standard `.ruby-version`, `.ruby-gemset`, and `.version.conf` in `.gitignore` is also putting a roadblock for those using alternative ruby version managers and modern approach to version management configuration. Those files should remain in local repositories and not be tracked. --- .gitignore | 4 ++++ .rvmrc | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) delete mode 100644 .rvmrc diff --git a/.gitignore b/.gitignore index 29f88d4..e76b9dc 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,7 @@ spec/reports test/tmp test/version_tmp tmp +.rvmrc +.version-conf +.ruby-version +.ruby-gemset diff --git a/.rvmrc b/.rvmrc deleted file mode 100644 index 0127fa3..0000000 --- a/.rvmrc +++ /dev/null @@ -1 +0,0 @@ -rvm use --create 2.4@active_data