brillo 1.1.4.pre1 → 1.1.4.pre2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/brillo/adapter/postgres.rb +1 -1
- data/lib/brillo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 459286cde80a702697d6327eb4b44b5897b33957
|
4
|
+
data.tar.gz: b8bd1b2340a9a1f43bca5033f69960d373657c79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7857c64d66f105850f8abf1acdd3bb6414d927dd3aa01f505263b7825a3476e1a3ce72ce4eff06065e8f5263a3039ef6f92321b92db008862dcc6ebe2bf596d7
|
7
|
+
data.tar.gz: df833a00f2207747d45df20d1497dfcfc758ae84e9350f143f7dc38bdbd36fb0d24e62dddd52831f3470074860109a7c2163862e9db8895a0aff3ddccff4e991
|
@@ -4,7 +4,7 @@ module Brillo
|
|
4
4
|
def load_command
|
5
5
|
host = config[:host] ? "--host #{config[:host]}" : ""
|
6
6
|
password = config[:password] ? "PGPASSWORD=#{config[:password]} " : ""
|
7
|
-
"#{password}psql #{host} -U #{config[:username]} #{
|
7
|
+
"#{password}psql #{host} -U #{config[:username]} #{config[:database]}"
|
8
8
|
end
|
9
9
|
|
10
10
|
# pgdump without schema does not set sequences, so we have to do it ourselves, or the first insert
|
data/lib/brillo/version.rb
CHANGED