We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58b5845 commit 37d3dc0Copy full SHA for 37d3dc0
README.md
@@ -5,5 +5,4 @@
5
6
A framework for managing and maintaining multi-language pre-commit hooks.
7
8
-For more information see: http://pre-commit.com
9
-
+For more information see: http://pre-commit.com/
pre_commit/languages/ruby.py
@@ -65,7 +65,7 @@ def _install_rbenv(repo_cmd_runner, version='default'):
65
def _install_ruby(environment, version):
66
try:
67
environment.run('rbenv download {0}'.format(version))
68
- except CalledProcessError:
+ except CalledProcessError: # pragma: no cover (usually find with download)
69
# Failed to download from mirror for some reason, build it instead
70
environment.run('rbenv install {0}'.format(version))
71
0 commit comments