brillo 2.0.0.rc3 → 2.0.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b830c8be50fe90aca042cd88c4aa5f9a70144d8ec411ab3f9f72a146e32dcb6e
4
- data.tar.gz: 5fab4ef7804ecce78c64fbe9431f8d60b369ef9a0112f3bd1639b98a94520776
3
+ metadata.gz: 47d4df0c45737ff3165e934cd24196aa87ced362dd377cd2c3bdf4105f2992f4
4
+ data.tar.gz: 17cb2933c8ba48c582cb077875666321d8e69030d2ad26d557409959dcebaec7
5
5
  SHA512:
6
- metadata.gz: 05aff1337d94252c4181738c04b180c1a666a4ace933e0db7b93f1b21847a8b3ed2c7aefbff1a59b3433c8b384bc0464597a885164a9982a1d265564c713ad0f
7
- data.tar.gz: 3fe428deb343a28d6dac37bdff7b85b7cd142331105e7f1c22a75e32642db666756ad621b819a5396693b38b369a69024ffae5be7301bc7a31e2b24ffe7fc004
6
+ metadata.gz: b49eb23909168cf5d82d205df5215ba826fee7c9246c558a0d4d6cf1aae41988816a2a4b0ac7c8d0d7e174344eb4901941563acd212be287ffd7db6abe459172
7
+ data.tar.gz: 17a08e2c440c53c748b3f239af063f756fa837cea6b7bac161ff4ca26e038e60f5a09e83e506ad0c60c39fc931c5c0784ab960f232ff72009061e8ba72649e74
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- ## 2.0.0.rc1
3
+ ## 2.0.0 (Unreleased)
4
4
  Upgrade to AWS SDK 3.0, reduce dependence to S3 specifically.
5
5
 
6
6
  Support ERB in brillo.yaml
@@ -25,9 +25,9 @@ module Brillo
25
25
  end
26
26
 
27
27
  def load_command
28
- host = config[:host] ? "--host #{config[:host]}" : ""
29
- password = config[:password] ? "-p#{config[:password]}" : ""
30
- "mysql #{host} -u #{config[:username]} #{password} #{config[:database]}"
28
+ host = config["host"] ? "--host #{config["host"]}" : ""
29
+ password = config["password"] ? "-p#{config["password"]}" : ""
30
+ "mysql #{host} -u #{config.fetch("username")} #{password} #{config.fetch("database")}"
31
31
  end
32
32
  end
33
33
  end
@@ -2,9 +2,9 @@ module Brillo
2
2
  module Adapter
3
3
  class Postgres < Base
4
4
  def load_command
5
- host = config[:host] ? "--host #{config[:host]}" : ""
6
- password = config[:password] ? "PGPASSWORD=#{config[:password]} " : ""
7
- "#{password}psql #{host} -U #{config[:username]} #{config[:database]}"
5
+ host = config["host"] ? "--host #{config["host"]}" : ""
6
+ password = config["password"] ? "PGPASSWORD=#{config["password"]} " : ""
7
+ "#{password}psql #{host} -U #{config.fetch("username")} #{config.fetch("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
@@ -1,3 +1,3 @@
1
1
  module Brillo
2
- VERSION = "2.0.0.rc3"
2
+ VERSION = "2.0.0.rc4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brillo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc3
4
+ version: 2.0.0.rc4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Bessey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-12 00:00:00.000000000 Z
11
+ date: 2019-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake