Class: Bundler::UI::Silent

Inherits:
Object
  • Object
show all
Defined in:
lib/bundler/ui/silent.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSilent

Returns a new instance of Silent.



8
9
10
# File 'lib/bundler/ui/silent.rb', line 8

def initialize
  @warnings = []
end

Instance Attribute Details

#shell=(value) ⇒ Object (writeonly)

Sets the attribute shell

Parameters:

  • value

    the value to set the attribute shell to.



6
7
8
# File 'lib/bundler/ui/silent.rb', line 6

def shell=(value)
  @shell = value
end

Instance Method Details

#add_color(string, color) ⇒ Object



12
13
14
# File 'lib/bundler/ui/silent.rb', line 12

def add_color(string, color)
  string
end

#ask(message) ⇒ Object



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

def ask(message)
end

#confirm(message, newline = nil) ⇒ Object



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

def confirm(message, newline = nil)
end

#debug(message, newline = nil) ⇒ Object



29
30
# File 'lib/bundler/ui/silent.rb', line 29

def debug(message, newline = nil)
end

#debug?Boolean

Returns:

  • (Boolean)


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

def debug?
  false
end

#error(message, newline = nil) ⇒ Object



26
27
# File 'lib/bundler/ui/silent.rb', line 26

def error(message, newline = nil)
end

#info(message, newline = nil) ⇒ Object



16
17
# File 'lib/bundler/ui/silent.rb', line 16

def info(message, newline = nil)
end

#level(name = nil) ⇒ Object



54
55
# File 'lib/bundler/ui/silent.rb', line 54

def level(name = nil)
end

#level=(name) ⇒ Object



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

def level=(name)
end

#no?Boolean

Returns:

  • (Boolean)


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

def no?
  raise "Cannot ask no? with a silent shell"
end

#quiet?Boolean

Returns:

  • (Boolean)


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

def quiet?
  false
end

#silenceObject



60
61
62
# File 'lib/bundler/ui/silent.rb', line 60

def silence
  yield
end

#trace(message, newline = nil, force = false) ⇒ Object



57
58
# File 'lib/bundler/ui/silent.rb', line 57

def trace(message, newline = nil, force = false)
end

#unprinted_warningsObject



64
65
66
# File 'lib/bundler/ui/silent.rb', line 64

def unprinted_warnings
  @warnings
end

#warn(message, newline = nil) ⇒ Object



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

def warn(message, newline = nil)
  @warnings |= [message]
end

#yes?(msg) ⇒ Boolean

Returns:

  • (Boolean)


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

def yes?(msg)
  raise "Cannot ask yes? with a silent shell"
end