eco-helpers 2.0.4 → 2.0.5
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/CHANGELOG.md +8 -0
- data/lib/eco/api/common/people/person_parser.rb +1 -1
- data/lib/eco/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: caef8b4ee689f202db51c1be9ea77c1c2e3b21cf16dcaebdf7fd838a260b5e26
|
4
|
+
data.tar.gz: ad27f525af9bceff0342e5676f898a9da1dbb486c6aad796f2bb3646ccf5cb68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4780834f301910259cb8958c1277de1972ac710f59f7803d34ed2263dc777c18a7a2503e3d6b36879b131b2625b657832a78a27471b690a5d9da8025d381df9f
|
7
|
+
data.tar.gz: 28b74a9f5d8fe22aadb053fbed4af2e35e4700a04e87fbfc201bd2336521f04814e25c0cbac7f48426172f4b21a05f8b4e4b551eaaffd4067c49609fce0dac92
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## [2.0.5] - 2021-02-24
|
5
|
+
|
6
|
+
### Added
|
7
|
+
### Changed
|
8
|
+
### Fixed
|
9
|
+
- `Eco::API::Common::People::PersonParser#symbol_keys` to use `Array#select`
|
10
|
+
- as `Array#filter` was introduced in ruby `2.5.5`
|
11
|
+
|
4
12
|
## [2.0.4] - 2021-02-23
|
5
13
|
|
6
14
|
### Added
|
@@ -108,7 +108,7 @@ module Eco
|
|
108
108
|
# @note this was introduced to boost virtual fields to treat in different phases of the parsing process
|
109
109
|
# @return [Array<Symbol>] all the parsers defined as Symbol
|
110
110
|
def symbol_keys
|
111
|
-
@parsers.keys.
|
111
|
+
@parsers.keys.select {|k| k.is_a?(Symbol)}
|
112
112
|
end
|
113
113
|
|
114
114
|
# Returns a list of all the internal attributes of the model that have a parser defined & that should be active.
|
data/lib/eco/version.rb
CHANGED