dice_bag 1.3.3 → 1.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5904157b01abe47270b498bcfc8774f0e957f1684f4a41801fb7cd37b8d8a0c1
4
- data.tar.gz: 7cfa5ac9041c69b21fd3129e841a3d6f6b1fb41aa33bacf47629dae5f2d296a5
3
+ metadata.gz: 621be927318494f8b788ea0365d31e0b9eabacf479302c2676c32932218ba46c
4
+ data.tar.gz: 0a8baa4761fe5f56b46a020081752080db39eca60b05bf1ca07d4cfd1ad80d70
5
5
  SHA512:
6
- metadata.gz: 0d88e2ff2d7cbc111140e34062854dde082b6c6dd0f21ebf19b04656a5e129e57f65910a62178fd862f77430340d5081c2141cdeb30f4b43081c0b6a2755f151
7
- data.tar.gz: 1fe7033f94c1d15294582f90586ade1c67edd936becd5c67bca58ecc6ac7254a28f528d7b846053d806ab91737ad8ce65fa4c2e0471bc31e9a13ceee535dca9c
6
+ metadata.gz: 1a82f6d2ce84f83dc9336cfc66701528428ecffc5b263fd7486690e15b6aa9c505b30cbda44eafeb1252f63dd3e6b463ba54378c94a8fccf6e6796cecd660d70
7
+ data.tar.gz: af3ed9c9266a3430ae9c347247de3ef77337a141073cbc833228d9c93061f5cc391bc0e0663a22b7b9e8a8cd0f14805b505373669f42ca764f9e45bee57cd658
@@ -12,8 +12,8 @@
12
12
  port: <%= configured[env].database_port || 3306 %>
13
13
  pool: <%= configured[env].database_pool || 5 %>
14
14
  timeout: <%= configured[env].database_timeout || 5000 %>
15
- encoding: <%= configured[env].database_encoding || 'utf8' %>
16
- reconnect: <%= configured[env].database_reconnect || false %>
15
+ encoding: <%= configured[env].database_encoding || 'utf8' %>
16
+ reconnect: <%= configured[env].database_reconnect || false %>
17
17
  <% db_cert = configured[env].database_ssl_cert %>
18
18
  <%= db_cert ? "sslca: #{db_cert}" : '' %>
19
19
  <% end %>
@@ -12,8 +12,8 @@
12
12
  port: <%= configured[env].database_port || 5432 %>
13
13
  pool: <%= configured[env].database_pool || 5 %>
14
14
  timeout: <%= configured[env].database_timeout || 5000 %>
15
- encoding: <%= configured[env].database_encoding || 'unicode' %>
16
- reconnect: <%= configured[env].database_reconnect || false %>
15
+ encoding: <%= configured[env].database_encoding || 'unicode' %>
16
+ reconnect: <%= configured[env].database_reconnect || false %>
17
17
  <% db_cert = configured[env].database_ssl_cert %>
18
18
  <%= db_cert ? "sslca: #{db_cert}" : '' %>
19
19
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module DiceBag
2
- VERSION = "1.3.3"
2
+ VERSION = "1.3.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dice_bag
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Smith
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-05-17 00:00:00.000000000 Z
12
+ date: 2020-02-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -149,13 +149,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
- rubygems_version: 3.0.3
152
+ rubygems_version: 3.0.6
153
153
  signing_key:
154
154
  specification_version: 4
155
155
  summary: Dice Bag is a library of rake tasks for configuring web apps in the style
156
156
  of The Twelve-Factor App. It also provides continuous integration tasks that rely
157
157
  on the configuration tasks.
158
158
  test_files:
159
- - spec/command_spec.rb
160
159
  - spec/spec_helper.rb
160
+ - spec/command_spec.rb
161
161
  - spec/configuration_spec.rb