diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2018-11-08 10:59:52 -0500 |
---|---|---|
committer | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2018-11-08 12:07:21 -0500 |
commit | 0712dfd6ae1423269af1512c3403ee1145f27de1 (patch) | |
tree | 80daa81c448df725c12aba55e3e2d8bb28066da0 /activesupport/lib/active_support/testing | |
parent | fc2684c9c012b95ce003cce22b378d5ea9ab56d3 (diff) | |
download | rails-0712dfd6ae1423269af1512c3403ee1145f27de1.tar.gz rails-0712dfd6ae1423269af1512c3403ee1145f27de1.tar.bz2 rails-0712dfd6ae1423269af1512c3403ee1145f27de1.zip |
Windows support for parallelization and instrumenter
Add Windows support for `ActiveSupport::Testing::Parallelization`
and `ActiveSupport::Notifications::Instrumenter`.
Diffstat (limited to 'activesupport/lib/active_support/testing')
-rw-r--r-- | activesupport/lib/active_support/testing/parallelization.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/parallelization.rb b/activesupport/lib/active_support/testing/parallelization.rb index 9c8dffa9d8..73af161d26 100644 --- a/activesupport/lib/active_support/testing/parallelization.rb +++ b/activesupport/lib/active_support/testing/parallelization.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true require "drb" -require "drb/unix" +require "drb/unix" unless Gem.win_platform? require "active_support/core_ext/module/attribute_accessors" module ActiveSupport |