From e622116f277b49eec59f663417210c1770dd8c5a Mon Sep 17 00:00:00 2001 From: "Bob W. Hogg" Date: Sat, 18 Feb 2017 14:35:02 -0800 Subject: [PATCH] .simplecov: require English with capital E On case-sensitive filesystems, require "english" will fail with "cannot load such file -- english" --- Library/Homebrew/.simplecov | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/.simplecov b/Library/Homebrew/.simplecov index 952bb466b5..f74aec72ef 100755 --- a/Library/Homebrew/.simplecov +++ b/Library/Homebrew/.simplecov @@ -1,6 +1,6 @@ #!/usr/bin/env ruby -require "english" +require "English" SimpleCov.start do coverage_dir File.expand_path("../test/coverage", File.realpath(__FILE__))