From 5f3a6a19f23caa7d0dc097ae8e197be507c03d11 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Thu, 14 Feb 2013 12:51:00 +0000 Subject: [PATCH] Ignore RVM config if the user wants to use it RVM allows the user to select a specific Ruby for a specific project. It is common to put a .rvmrc config file in the root of a project to select the Ruby automatically when the user switches into that project. The Ruby Koans should ignore this file if present and not mistake it for a change to the Koans themselves. There are other ways of choosing a Ruby to use, and use of RVM is not mandated by the Koans so ignoring seems like the right solution. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ffb9a5a..81fb2a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ dist .project_env.rc .path_progress +.rvmrc *.rbc koans/*