method
find_cmd_and_exec
v4.2.1 -
Show latest stable
- Class:
Rails::DBConsole
find_cmd_and_exec(commands, *args)protected
No documentation available.
# File railties/lib/rails/commands/dbconsole.rb, line 171
def find_cmd_and_exec(commands, *args)
commands = Array(commands)
dirs_on_path = ENV['PATH'].to_s.split(File::PATH_SEPARATOR)
commands += commands.map{|cmd| "#{cmd}.exe"} if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
full_path_command = nil
found = commands.detect do |cmd|
dirs_on_path.detect do |path|
full_path_command = File.join(path, cmd)
File.executable? full_path_command
end
end
if found
exec full_path_command, *args
else
abort("Couldn't find database client: #{commands.join(', ')}. Check your $PATH and try again.")
end
end