1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

Formatting issues

This commit is contained in:
Jaime Melis 2016-07-05 12:24:41 +02:00
parent 4f52867944
commit 217aa53dd5

View File

@ -216,7 +216,7 @@ def install_warning(packages)
# puts "Use -h for help"
# puts
puts "About to install the gems for these components:"
puts "* "<<packages.join("\n* ")
puts "* " << packages.join("\n* ")
puts
puts "Press enter to continue..."
yes=STDIN.readline
@ -224,7 +224,7 @@ end
def help
puts "Specify the package dependencies from this list:"
puts "* "<<PACKAGES.join("\n* ")
puts "* " << PACKAGES.join("\n* ")
puts
puts "If no parameters are specified then this list will be used:"
puts DEFAULT.join(' ')
@ -316,12 +316,12 @@ def install_dependencies(gems, distro)
end
puts "About to install these dependencies:"
puts "* "<<deps.join("\n* ")
puts "* " << deps.join("\n* ")
puts
puts "Press enter to continue..."
STDIN.readline
command=distro.last[:install_command]+" "<<deps.join(' ')
command=distro.last[:install_command]+" " << deps.join(' ')
puts command
system command
end
@ -369,7 +369,7 @@ def install_gems(packages)
special_gems=gems_list.select {|g| g.match(/\s/) }
special_gems.each do |gem|
cmd=command_string+" "<<gem
cmd=command_string+" " << gem
run_command(cmd)
end
@ -502,6 +502,3 @@ when 'install'
install_gems(packages)
end