Class: Bundler::UI::Shell
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/bundler/ui/shell.rb |
Constant Summary
-
LEVELS =
# File 'lib/bundler/ui/shell.rb', line 8%w[silent error warn confirm info debug].freeze
Class Method Summary
- .new(options = {}) ⇒ Shell constructor
Instance Attribute Summary
- #debug? ⇒ Boolean readonly
- #level(name = nil) rw
- #level=(level) rw
- #no? ⇒ Boolean readonly
- #quiet? ⇒ Boolean readonly
- #shell=(value) writeonly
Instance Method Summary
- #add_color(string, *color)
- #ask(msg)
- #confirm(msg, newline = nil)
- #debug(msg, newline = nil) readonly
- #error(msg, newline = nil, color = :red)
- #info(msg, newline = nil)
- #silence(&blk)
- #trace(e, newline = nil, force = false)
- #unprinted_warnings
- #warn(msg, newline = nil, color = :yellow)
- #yes?(msg) ⇒ Boolean
- #strip_leading_spaces(text) private
- #tell_err(message, color = nil, newline = nil) private
-
#tell_me(msg, color = nil, newline = nil)
private
valimism.
- #with_level(level) private
- #word_wrap(text, line_width = @shell.terminal_width) private
Constructor Details
.new(options = {}) ⇒ Shell
Instance Attribute Details
#debug? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/bundler/ui/shell.rb', line 48
def debug? level("debug") end
#level(name = nil) (rw)
[ GitHub ]#level=(level) (rw)
#no? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/bundler/ui/shell.rb', line 64
def no? @shell.no?(msg) end
#quiet? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/bundler/ui/shell.rb', line 52
def quiet? level("quiet") end
#shell=(value) (writeonly)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 10
attr_writer :shell
Instance Method Details
#add_color(string, *color)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 19
def add_color(string, *color) @shell.set_color(string, *color) end
#ask(msg)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 56
def ask(msg) @shell.ask(msg) end
#confirm(msg, newline = nil)
[ GitHub ]#debug(msg, newline = nil) (readonly)
[ GitHub ]#error(msg, newline = nil, color = :red)
[ GitHub ]#info(msg, newline = nil)
[ GitHub ]#silence(&blk)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 87
def silence(&blk) with_level("silent", &blk) end
#strip_leading_spaces(text) (private)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 122
def strip_leading_spaces(text) spaces = text[/\A\s+/, 0] spaces ? text.gsub(/#{spaces}/, "") : text end
#tell_err(message, color = nil, newline = nil) (private)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 107
def tell_err(, color = nil, newline = nil) return if @shell.send(:stderr).closed? newline ||= .to_s !~ /( |\t)\Z/ = word_wrap( ) if newline.is_a?(Hash) && newline[:wrap] color = nil if color && !$stderr.tty? buffer = @shell.send(:, , *color) buffer << "\n" if newline && ! .to_s.end_with?("\n") @shell.send(:stderr).print(buffer) @shell.send(:stderr).flush end
#tell_me(msg, color = nil, newline = nil) (private)
valimism
# File 'lib/bundler/ui/shell.rb', line 98
def tell_me(msg, color = nil, newline = nil) msg = word_wrap(msg) if newline.is_a?(Hash) && newline[:wrap] if newline.nil? @shell.say(msg, color) else @shell.say(msg, color, newline) end end
#trace(e, newline = nil, force = false)
[ GitHub ]#unprinted_warnings
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 91
def unprinted_warnings [] end
#warn(msg, newline = nil, color = :yellow)
[ GitHub ]#with_level(level) (private)
[ GitHub ]#word_wrap(text, line_width = @shell.terminal_width) (private)
[ GitHub ]# File 'lib/bundler/ui/shell.rb', line 127
def word_wrap(text, line_width = @shell.terminal_width) strip_leading_spaces(text).split("\n").collect do |line| line.length > line_width ? line.gsub(/(.{1,#{line_width}})(\s+|$)/, "\\1\n").strip : line end * "\n" end
#yes?(msg) ⇒ Boolean
# File 'lib/bundler/ui/shell.rb', line 60
def yes?(msg) @shell.yes?(msg) end