aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAndrew Thorburn2015-11-27 17:58:16 +0000
committerMike McQuaid2015-11-27 18:48:38 +0000
commit4c3a6c6022b2ad5e71b7315c275860400af85f20 (patch)
tree25274bb91b842049b4970cd7fd2374a9f9ada578 /Library
parent10c79620c15dd2dc0b02b1376f6a79515f9d01af (diff)
downloadbrew-4c3a6c6022b2ad5e71b7315c275860400af85f20.tar.bz2
formula: add missing require.
Closes Homebrew/homebrew#46433. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/outdated.rb1
-rw-r--r--Library/Homebrew/formula.rb1
2 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/outdated.rb b/Library/Homebrew/cmd/outdated.rb
index 2c3316f85..dbcf94ae8 100644
--- a/Library/Homebrew/cmd/outdated.rb
+++ b/Library/Homebrew/cmd/outdated.rb
@@ -1,6 +1,5 @@
require "formula"
require "keg"
-require "migrator"
module Homebrew
def outdated
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 29693eee9..5b89f487f 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -12,6 +12,7 @@ require "pkg_version"
require "tap"
require "formula_renames"
require "keg"
+require "migrator"
# A formula provides instructions and metadata for Homebrew to install a piece
# of software. Every Homebrew formula is a {Formula}.