dice_bag 1.3.3 → 1.3.4
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 621be927318494f8b788ea0365d31e0b9eabacf479302c2676c32932218ba46c
|
4
|
+
data.tar.gz: 0a8baa4761fe5f56b46a020081752080db39eca60b05bf1ca07d4cfd1ad80d70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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:
|
16
|
-
reconnect:
|
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:
|
16
|
-
reconnect:
|
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 %>
|
data/lib/dice_bag/version.rb
CHANGED
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.
|
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:
|
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.
|
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
|