diff options
Diffstat (limited to 'Library/Homebrew/dev-cmd/pull.rb')
| -rw-r--r-- | Library/Homebrew/dev-cmd/pull.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/dev-cmd/pull.rb b/Library/Homebrew/dev-cmd/pull.rb index 7e6e86a85..f7006baaa 100644 --- a/Library/Homebrew/dev-cmd/pull.rb +++ b/Library/Homebrew/dev-cmd/pull.rb @@ -32,7 +32,7 @@ require "net/http" require "net/https" require "utils" -require "utils/json" +require "json" require "formula" require "formulary" require "tap" @@ -433,7 +433,7 @@ module Homebrew return nil unless $?.success? Homebrew.force_utf8!(json) - FormulaInfoFromJson.new(Utils::JSON.load(json)[0]) + FormulaInfoFromJson.new(JSON.parse(json)[0]) end def bottle_tags |
