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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9d3673e96ff9410f3b77d1ecdd59b74cbfe794bd50b9f6fad75701200c911742
4
- data.tar.gz: d405e584648c18a4119b7f4c242923b74e28e433779ad3929ff22da3e569bba1
3
+ metadata.gz: bc6553610acca8f30eb067accd9a8ff09756ea7c0fdb231dac896210018e0db1
4
+ data.tar.gz: 41e673fa16e1a7ea7d7c7c3f75a7131c7add0fa4ea297ae3044ca9ddbbd1b4f3
5
5
  SHA512:
6
- metadata.gz: 63267d2db22ceabb15c2ca4e8114a25854bf71446799992de552ce91f6ff7d8487fb7204f1ea76df8be77dcfa71ac89d21f26084c87fb17831469406920f1862
7
- data.tar.gz: 2f7d784e8f9b3385d37c90a04fce2b4ea869c5fb3b1e62be613e835b898a2b6f4f8742dbb38785295e695309c7b6b6f6b3fe804a8e5afb7f03655510612ce05d
6
+ metadata.gz: '01793d4487cd53b78a2d35721a3e6d91ff29a8c98976e9e861bfc599e49dfbf89939bec66da4fd986f8b8f99c4cf2001ac859274859185aaf4a89f9f56bae7a3'
7
+ data.tar.gz: c0f27b5b4656c07a16e861544daf610b94d397a5b245e89d65850c23e24f1a5318042b6871430cd2c0341c0bdb3f27b4163781bbf024680157cd68889202459c
data/.rubocop.yml CHANGED
@@ -8,10 +8,13 @@ AllCops:
8
8
  Metrics/MethodLength:
9
9
  Max: 12
10
10
 
11
- require: rubocop-rspec
11
+ plugins: rubocop-rspec
12
12
 
13
13
  RSpec/ExampleLength:
14
- Max: 10
14
+ Max: 15
15
15
 
16
16
  Metrics/CyclomaticComplexity:
17
17
  Max: 8
18
+
19
+ RSpec/MultipleMemoizedHelpers:
20
+ Max: 15
data/CHANGELOG.md CHANGED
@@ -1,8 +1,33 @@
1
- ## [Unreleased]
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
- current_time = Time.at(timestamp || TimeHelper.current_timestamp).to_s.split
96
- current_time[1] = new_time
97
- DateTime.strptime(current_time.join(' '), '%Y-%m-%d %H:%M:%S %z').to_time
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
@@ -6,6 +6,6 @@ module Timet
6
6
  # @return [String] The version number in the format 'major.minor.patch'.
7
7
  #
8
8
  # @example Get the version of the Timet application
9
- # Timet::VERSION # => '1.5.4'
10
- VERSION = '1.5.4'
9
+ # Timet::VERSION # => '1.5.5'
10
+ VERSION = '1.5.5'
11
11
  end
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
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 00:00:00.000000000 Z
11
+ date: 2025-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor