This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
50 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,7 @@ | ||
module Bundler | ||
class UI | ||
module UI | ||
autoload :RGProxy, 'bundler/ui/rg_proxy' | ||
autoload :Shell, 'bundler/ui/shell' | ||
|
||
def info(message, newline = nil) | ||
end | ||
|
||
def confirm(message, newline = nil) | ||
end | ||
|
||
def warn(message, newline = nil) | ||
end | ||
|
||
def error(message, newline = nil) | ||
end | ||
|
||
def debug(message, newline = nil) | ||
end | ||
|
||
def debug? | ||
false | ||
end | ||
|
||
def quiet? | ||
false | ||
end | ||
|
||
def ask(message) | ||
end | ||
|
||
def level=(name) | ||
end | ||
|
||
def level(name = nil) | ||
end | ||
|
||
def trace(message, newline = nil) | ||
end | ||
|
||
def silence | ||
yield | ||
end | ||
autoload :Silent, 'bundler/ui/silent' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
module Bundler | ||
module UI | ||
class Silent | ||
def info(message, newline = nil) | ||
end | ||
|
||
def confirm(message, newline = nil) | ||
end | ||
|
||
def warn(message, newline = nil) | ||
end | ||
|
||
def error(message, newline = nil) | ||
end | ||
|
||
def debug(message, newline = nil) | ||
end | ||
|
||
def debug? | ||
false | ||
end | ||
|
||
def quiet? | ||
false | ||
end | ||
|
||
def ask(message) | ||
end | ||
|
||
def level=(name) | ||
end | ||
|
||
def level(name = nil) | ||
end | ||
|
||
def trace(message, newline = nil) | ||
end | ||
|
||
def silence | ||
yield | ||
end | ||
end | ||
end | ||
end |