Class: RedmineInstaller::Command::FullFormatter
Constant Summary
Constants included
from Utils
Utils::PROGRESSBAR_FORMAT
Instance Method Summary
collapse
Methods included from Utils
#class_name, #create_dir, #env_user, #error, #logger, #ok, #pastel, #prompt, #run_command
Instance Method Details
#print_end ⇒ Object
63
64
|
# File 'lib/redmine-installer/command.rb', line 63
def print_end(*)
end
|
#print_line(line) ⇒ Object
59
60
61
|
# File 'lib/redmine-installer/command.rb', line 59
def print_line(line)
puts line
end
|
#print_title(title) ⇒ Object
53
54
55
56
57
|
# File 'lib/redmine-installer/command.rb', line 53
def print_title(title)
puts '-->'
puts "--> #{pastel.yellow(title)}"
puts '-->'
end
|