Class: Bundler::UI::Shell

Inherits:
Bundler::UI show all
Defined in:
lib/bundler/ui.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(shell) ⇒ Shell

Returns a new instance of Shell.



21
22
23
24
25
# File 'lib/bundler/ui.rb', line 21

def initialize(shell)
  @shell = shell
  @quiet = false
  @debug = ENV['DEBUG']
end

Instance Attribute Details

#shell=(value) ⇒ Object (writeonly)

Sets the attribute shell

Parameters:

  • value

    the value to set the attribute shell to.



19
20
21
# File 'lib/bundler/ui.rb', line 19

def shell=(value)
  @shell = value
end

Instance Method Details

#be_quiet!Object



47
48
49
# File 'lib/bundler/ui.rb', line 47

def be_quiet!
  @quiet = true
end

#confirm(msg) ⇒ Object



35
36
37
# File 'lib/bundler/ui.rb', line 35

def confirm(msg)
  @shell.say(msg, :green) if !@quiet
end

#debug(msg) ⇒ Object



27
28
29
# File 'lib/bundler/ui.rb', line 27

def debug(msg)
  @shell.say(msg) if @debug && !@quiet
end

#debug!Object



51
52
53
# File 'lib/bundler/ui.rb', line 51

def debug!
  @debug = true
end

#error(msg) ⇒ Object



43
44
45
# File 'lib/bundler/ui.rb', line 43

def error(msg)
  @shell.say(msg, :red)
end

#info(msg) ⇒ Object



31
32
33
# File 'lib/bundler/ui.rb', line 31

def info(msg)
  @shell.say(msg) if !@quiet
end

#warn(msg) ⇒ Object



39
40
41
# File 'lib/bundler/ui.rb', line 39

def warn(msg)
  @shell.say(msg, :yellow)
end