Skip to content

Commit 3213703

Browse files
committed
Use 1.9.3-p547 instead.
1 parent 0f2e5f8 commit 3213703

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pre_commit/languages/ruby.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def env_prefix(self):
1818

1919
def run(self, *args, **kwargs):
2020
# TODO: hardcoded version smell
21-
env = dict(os.environ, RBENV_VERSION='1.9.3-p545')
21+
env = dict(os.environ, RBENV_VERSION='1.9.3-p547')
2222
return super(RubyEnv, self).run(*args, env=env, **kwargs)
2323

2424

@@ -61,7 +61,7 @@ def install_environment(repo_cmd_runner):
6161
_install_rbenv(repo_cmd_runner)
6262
with in_env(repo_cmd_runner) as ruby_env:
6363
# TODO: hardcoded version smell
64-
ruby_env.run('rbenv install 1.9.3-p545')
64+
ruby_env.run('rbenv install 1.9.3-p547')
6565
ruby_env.run(
6666
'cd {prefix} && gem build *.gemspec && gem install *.gem',
6767
)

0 commit comments

Comments
 (0)