eco-rake 0.2.24 → 0.2.25
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 -2
- data/lib/eco-rake/lib/people/sync_process.rb +1 -1
- data/lib/eco-rake/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: f495a5ee160337e85812e1c3e75585004a43f558e5d4a999f0335daed08e55c1
|
4
|
+
data.tar.gz: 696199b3004c629531f2b7ca6f5f337ff4b9850b41cf32b33ed2b2a8f63a365e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c3ec73ee7dcf6858a9c25ee8c231cd5ea2c1064664c7f28be8fe648929e349c548083dbca41c64313da157acd99365dea72289d52266e4c379af550199d2c90
|
7
|
+
data.tar.gz: d201edf1fe132134edfc8182da7d36ffc318263ea92d81c520eaccb172c4d628443f740b012cf547934a285716a4f03e0256e1a6c8edaf4aab2f1d1a6793e4ad
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
-
## [0.2.
|
5
|
+
## [0.2.26] - 2025-04-xx
|
6
6
|
|
7
7
|
### Added
|
8
8
|
|
@@ -10,7 +10,13 @@ All notable changes to this project will be documented in this file.
|
|
10
10
|
|
11
11
|
### Fixed
|
12
12
|
|
13
|
-
## [0.2.
|
13
|
+
## [0.2.25] - 2025-04-03
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
|
17
|
+
- Data file extensions was missing `.xls`
|
18
|
+
|
19
|
+
## [0.2.24] - 2025-04-03
|
14
20
|
|
15
21
|
### Added
|
16
22
|
|
@@ -5,7 +5,7 @@ class EcoRake
|
|
5
5
|
# @note in integration repos this is used to be called `run:feed`
|
6
6
|
class SyncProcess < EcoRake::Lib::People::SyncRely
|
7
7
|
DATA_FILE_EXTENSIONS = %w[
|
8
|
-
.csv .json .xml .txt .xlsx xlsm .xlsb
|
8
|
+
.csv .json .xml .txt .xls .xlsx xlsm .xlsb
|
9
9
|
].freeze
|
10
10
|
|
11
11
|
attr_const :do_decrypt, default: false
|
data/lib/eco-rake/version.rb
CHANGED