timet 1.5.4 → 1.5.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/.rubocop.yml +5 -2
- data/CHANGELOG.md +27 -1
- data/lib/timet/validation_edit_helper.rb +3 -3
- data/lib/timet/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc6553610acca8f30eb067accd9a8ff09756ea7c0fdb231dac896210018e0db1
|
4
|
+
data.tar.gz: 41e673fa16e1a7ea7d7c7c3f75a7131c7add0fa4ea297ae3044ca9ddbbd1b4f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '01793d4487cd53b78a2d35721a3e6d91ff29a8c98976e9e861bfc599e49dfbf89939bec66da4fd986f8b8f99c4cf2001ac859274859185aaf4a89f9f56bae7a3'
|
7
|
+
data.tar.gz: c0f27b5b4656c07a16e861544daf610b94d397a5b245e89d65850c23e24f1a5318042b6871430cd2c0341c0bdb3f27b4163781bbf024680157cd68889202459c
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,33 @@
|
|
1
|
-
## [
|
1
|
+
## [1.5.5] - 2025-02-26
|
2
|
+
|
3
|
+
**Improvements:**
|
4
|
+
|
5
|
+
- Refactored `DatabaseSyncer` specs to improve clarity, maintainability, and reduce redundancy.
|
6
|
+
- Removed `#process_existing_item` as its logic was redundant.
|
7
|
+
- Improved `#remote_wins?` tests with `let` blocks and better descriptions.
|
8
|
+
- Split multi-expectation tests into smaller, focused tests.
|
9
|
+
- Improved test descriptions for accuracy and clarity.
|
10
|
+
- Reorganized tests into more logical `describe` blocks.
|
11
|
+
- Moved S3 download tests to the `Timet::S3Supabase` `describe` block.
|
12
|
+
- Improved CSV export tests with extracted common data, centralized database setup, and a helper method.
|
13
|
+
- Improved message expectations in `#export_report` using `class_spy` and `have_received`.
|
14
|
+
- Improved test readability in `ApplicationHelper` with `let` blocks and separate `it` blocks.
|
15
|
+
- Refactored `DatabaseSyncer` specs with `let` blocks, focused examples, and explicit `expect` assertions.
|
16
|
+
- Prefer `have_received` for setting message expectations.
|
17
|
+
- Improved granularity in specs with smaller, focused examples and shared test data.
|
18
|
+
- Updated gem dependencies to latest versions.
|
19
|
+
- Overall code cleanup and improved test structure.
|
20
|
+
- Update the way rubocop plugins are defined in the config.
|
21
|
+
- Removed unnecessary comments.
|
22
|
+
|
23
|
+
**Bug Fixes:**
|
24
|
+
|
25
|
+
- Fixed a bug in the time field update logic in `validation_edit_helper`, specifically regarding the end time.
|
2
26
|
|
3
27
|
## [1.5.4] - 2025-02-11
|
4
28
|
|
5
29
|
**Improvements:**
|
30
|
+
|
6
31
|
- Added `.env` file creation in CI workflow for testing environment variables.
|
7
32
|
- Updated Code Climate coverage reporting to use `simplecov-lcov` for LCOV format compatibility.
|
8
33
|
- Refactored validation error message tests in `ValidationEditHelper` for clarity and maintainability.
|
@@ -16,6 +41,7 @@
|
|
16
41
|
- Improved error handling and added tests for `S3Supabase`.
|
17
42
|
|
18
43
|
**Bug Fixes:**
|
44
|
+
|
19
45
|
- Fixed environment variable validation in `S3Supabase` to handle `nil` values.
|
20
46
|
- Resolved issues with database synchronization logic in `DatabaseSyncer`.
|
21
47
|
- Fixed test setup and cleanup in `S3Supabase` and `DatabaseSyncer` specs.
|
@@ -92,9 +92,9 @@ module Timet
|
|
92
92
|
def update_time_field(item, field, new_time)
|
93
93
|
field_index = Timet::Application::FIELD_INDEX[field]
|
94
94
|
timestamp = item[field_index]
|
95
|
-
|
96
|
-
|
97
|
-
DateTime.strptime(
|
95
|
+
edit_time = Time.at(timestamp || item[1]).to_s.split
|
96
|
+
edit_time[1] = new_time
|
97
|
+
DateTime.strptime(edit_time.join(' '), '%Y-%m-%d %H:%M:%S %z').to_time
|
98
98
|
end
|
99
99
|
|
100
100
|
# Validates if a new time value is valid for a specific time field (start or end).
|
data/lib/timet/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: timet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frank Vielma
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|