bookends 10.3.4 → 10.4.0
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 +4 -4
- data/lib/bookends/config.rb +1 -1
- data/lib/bookends/engine.rb +1 -0
- data/lib/bookends/version.rb +1 -1
- data/spec/test_app/log/development.log +0 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8472eb420b45e79b8b8f371c79febbb9c5d1e86d9b9b88166e4bf29f171eadcc
|
|
4
|
+
data.tar.gz: 5344fca5d187796530a1d1aef4e2a85790db30549ad7fba3b94af33817ec6fbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 787c48c6e206d7c19f819fc761ff48dac8a45cd5f1f2fda1bee61b17cbd2914a2abaa7c3b312b790669e41b32011e2931f2df367cf16d4248b82dfcbe25acece
|
|
7
|
+
data.tar.gz: 609e0bfbd54bfc85640f495e90a0c3890f555674e8d9c6a37d72e83c536713d7ad5f2e6abd2e252636e3f6a04c270980f9f6e5f45f6d44791c3045cab6caf539
|
data/lib/bookends/config.rb
CHANGED
|
@@ -6,7 +6,7 @@ module Bookends
|
|
|
6
6
|
attr_reader :_config
|
|
7
7
|
|
|
8
8
|
def load!(filename, options = {})
|
|
9
|
-
configs =
|
|
9
|
+
configs = Psych.safe_load(File.read(filename), aliases: true).deep_symbolize_keys
|
|
10
10
|
configs = configs[options[:env].to_sym] if options[:env] && configs[options[:env].to_sym]
|
|
11
11
|
deep_merge!(@_config, configs)
|
|
12
12
|
end
|
data/lib/bookends/engine.rb
CHANGED
data/lib/bookends/version.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bookends
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.
|
|
4
|
+
version: 10.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marketing Web Ops at heroku
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: puma
|
|
@@ -339,6 +339,7 @@ files:
|
|
|
339
339
|
- spec/test_app/config/routes.rb
|
|
340
340
|
- spec/test_app/config/secrets.yml
|
|
341
341
|
- spec/test_app/db/development.sqlite3
|
|
342
|
+
- spec/test_app/log/development.log
|
|
342
343
|
- spec/test_app/public/404.html
|
|
343
344
|
- spec/test_app/public/422.html
|
|
344
345
|
- spec/test_app/public/500.html
|
|
@@ -361,7 +362,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
361
362
|
- !ruby/object:Gem::Version
|
|
362
363
|
version: '0'
|
|
363
364
|
requirements: []
|
|
364
|
-
rubygems_version: 3.4
|
|
365
|
+
rubygems_version: 3.5.4
|
|
365
366
|
signing_key:
|
|
366
367
|
specification_version: 4
|
|
367
368
|
summary: an engine to abstract common html/css elements across Heroku properties
|
|
@@ -407,6 +408,7 @@ test_files:
|
|
|
407
408
|
- spec/test_app/config/secrets.yml
|
|
408
409
|
- spec/test_app/config.ru
|
|
409
410
|
- spec/test_app/db/development.sqlite3
|
|
411
|
+
- spec/test_app/log/development.log
|
|
410
412
|
- spec/test_app/public/404.html
|
|
411
413
|
- spec/test_app/public/422.html
|
|
412
414
|
- spec/test_app/public/500.html
|