diff options
author | Nobuyoshi Nakada <[email protected]> | 2024-04-11 02:10:20 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2024-04-11 02:10:20 +0900 |
commit | d60b2caa95b01f37d35db9ef8be1d035d14b408d (patch) | |
tree | 15f4f964afc61c8bc6c22ddf3b8856259a1e7ae6 /tool/bundler | |
parent | 6a505d1b59cf326a8e004fc06e02f30222b17f3f (diff) |
Lock turbo_tests to 2.1.0 provisionally
turbo_tests 2.1.1 adds json to its dependency and the current bundler
does not take the standard library json and fails to build as a gem
before the installation.
Diffstat (limited to 'tool/bundler')
-rw-r--r-- | tool/bundler/dev_gems.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/bundler/dev_gems.rb b/tool/bundler/dev_gems.rb index cb4b556d2f..acf7335578 100644 --- a/tool/bundler/dev_gems.rb +++ b/tool/bundler/dev_gems.rb @@ -7,7 +7,7 @@ gem "rake", "~> 13.1" gem "rb_sys" gem "webrick", "~> 1.6" -gem "turbo_tests", "~> 2.1" +gem "turbo_tests", "= 2.1.0" gem "parallel_tests", "< 3.9.0" gem "parallel", "~> 1.19" gem "rspec-core", "~> 3.12" |