appfuel 0.2.7 → 0.2.8
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88e413bfd2d8d291a082e1ceb3fb292d919c29f4
|
4
|
+
data.tar.gz: 3a743055b87cf4505dcaa4d8cb27ee8e0f596179
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd8cadc46ee46043cd3ab4be7326e91274c38462a25d4ee33d14e3c4e23d76ab9755601e9b9402cd8d74da8f19d2c7c7fcee3317fec69777f09311ed4cee6ac6
|
7
|
+
data.tar.gz: d1c9b2d0d7d11322557dc1e4e3386a5fbda0976fe507f588e88fb108720036076a4396b252e0ddce0d0cdf174ba56957f7013ec2864ce0b1f8d25b903afe124b
|
data/CHANGELOG.md
CHANGED
@@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file. (Pending ap
|
|
4
4
|
# [Unreleased]
|
5
5
|
|
6
6
|
# Releases
|
7
|
-
## [[0.2.
|
7
|
+
## [[0.2.8]](https://github.com/rsb/appfuel/releases/tag/0.2.8) 2017-06-07
|
8
|
+
### Fixed
|
9
|
+
- searching configuration definitions with a symbol was failing because key was
|
10
|
+
a string
|
11
|
+
|
12
|
+
## [[0.2.7]](https://github.com/rsb/appfuel/releases/tag/0.2.7) 2017-06-07
|
8
13
|
### Changed
|
9
14
|
- Initializers are now stored in the app container and separate runlist
|
10
15
|
determines the order for which they run
|
@@ -62,7 +62,7 @@ module Appfuel
|
|
62
62
|
# @param key Symbol|String key used config hash
|
63
63
|
# @return Definition
|
64
64
|
def initialize(key)
|
65
|
-
@key = key
|
65
|
+
@key = key.to_s
|
66
66
|
@defaults = {}
|
67
67
|
@file = []
|
68
68
|
@validator = nil
|
@@ -156,7 +156,7 @@ module Appfuel
|
|
156
156
|
end
|
157
157
|
|
158
158
|
def delete(name)
|
159
|
-
@children.delete(name)
|
159
|
+
@children.delete(name.to_s)
|
160
160
|
end
|
161
161
|
|
162
162
|
# Append a definition to this definition's children
|
data/lib/appfuel/version.rb
CHANGED