Skip to content

Commit

Permalink
No need to load mutant automatically with Bundler
Browse files Browse the repository at this point in the history
* mutant is run through its commandlne exe
* normally we do not require mutant files in specs
* there's rare case when invoking Rails::Generator somehow triggers
  requiring mutant gem, perhaps via some obscure code in Rails calling
  Bundler.require underneath

Resolves problems with truffleruby:
oracle/truffleruby#2798
  • Loading branch information
mostlyobvious committed Nov 30, 2022
1 parent 75e4852 commit 899ab43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions support/bundler/Gemfile.shared
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gem "rake", ">= 10.0"
gem "rspec", "~> 3.6"
gem "mutant-rspec", "= 0.11.17"
gem "mutant-minitest", "= 0.11.17"
gem "mutant", "= 0.11.17"
gem "mutant-rspec", "= 0.11.17", require: false
gem "mutant-minitest", "= 0.11.17", require: false
gem "mutant", "= 0.11.17", require: false
gem "mutant-license", source: "https://oss:7AXfeZdAfCqL1PvHm2nvDJO6Zd9UW8IK@gem.mutant.dev"

0 comments on commit 899ab43

Please sign in to comment.