lib/reflection/rails.rb in reflection-0.4.1 vs lib/reflection/rails.rb in reflection-0.4.3
- old
+ new
@@ -17,11 +17,11 @@
end
def database_command_line_options(database_config)
options = []
options << "-h #{database_config['host']}"
- options << "-u #{database_config['username']}"
- options << "-p #{database_config['password']}" if database_config['password'] && !database_config['password'].empty?
+ options << "-u#{database_config['username']}"
+ options << "-p#{database_config['password']}" if database_config['password'] && !database_config['password'].empty?
options << "#{database_config['database']}"
options.join(' ')
end
def read_database_configuration(config)
\ No newline at end of file