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.
This commit is contained in:
David Kennedy
2013-02-14 12:51:00 +00:00
parent 1a073e5db5
commit 5f3a6a19f2

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
dist
.project_env.rc
.path_progress
.rvmrc
*.rbc
koans/*