timet 1.5.1 → 1.5.1.1
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 +1 -0
- data/lib/timet/database.rb +1 -1
- data/lib/timet/time_helper.rb +15 -0
- data/lib/timet/version.rb +2 -2
- 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: 702fbd78abcbf5fc42347e44df5e6cf50fdefa290136651afbbb4691f09a2fed
|
4
|
+
data.tar.gz: c806105e1474db94c1160d7988238baeb902fcb2be4e074afb548c054889cbaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 43a94a6be1b367bbf629d9e3ff167270fe4a212c3dfe6445e00e4e0a7d956e163e33de2197cb85b46b0aad1925dbbd04abdd6e2f0964f44e862cfb7f5aac555e
|
7
|
+
data.tar.gz: 78871a6e9700c5bc6e32f570a80d2805c8c58e10e3d7b43114dc37efcc00eb96e32639b8544664377d0e13920ae5644d7b9d961230f80ec02905c953468f82a4
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
- Extracted the logic for syncing items by ID into a separate method `sync_items_by_id` for better readability and maintainability.
|
8
8
|
- Improved the writing of missing environment variables to the .env file in the S3Supabase module by ensuring the file content ends with a newline character.
|
9
9
|
- Refactored the `all_items` method to use `beginning_of_day` for today's timestamp, improving the accuracy of the timestamp calculation.
|
10
|
+
- Fix `beginning_of_day`
|
10
11
|
|
11
12
|
**Bug Fixes:**
|
12
13
|
|
data/lib/timet/database.rb
CHANGED
@@ -187,7 +187,7 @@ module Timet
|
|
187
187
|
# @note The method executes SQL to fetch all items from the 'items' table that have a start time greater than
|
188
188
|
# or equal to today.
|
189
189
|
def all_items
|
190
|
-
today =
|
190
|
+
today = TimeHelper.beginning_of_day.to_i
|
191
191
|
execute_sql('SELECT * FROM items WHERE start >= ? AND (deleted IS NULL OR deleted = 0) ORDER BY start DESC',
|
192
192
|
[today])
|
193
193
|
end
|
data/lib/timet/time_helper.rb
CHANGED
@@ -232,5 +232,20 @@ module Timet
|
|
232
232
|
end
|
233
233
|
hour_blocks
|
234
234
|
end
|
235
|
+
|
236
|
+
# Returns a Time object representing the start of the given day (midnight).
|
237
|
+
#
|
238
|
+
# @param time [Time] The time for which to find the beginning of day (defaults to current time).
|
239
|
+
# @return [Time] A new Time object set to midnight (00:00:00) of the given day.
|
240
|
+
#
|
241
|
+
# @example Get beginning of current day
|
242
|
+
# TimeHelper.beginning_of_day # => 2024-12-07 00:00:00
|
243
|
+
#
|
244
|
+
# @example Get beginning of specific day
|
245
|
+
# time = Time.new(2024, 12, 7, 15, 30, 45)
|
246
|
+
# TimeHelper.beginning_of_day(time) # => 2024-12-07 00:00:00
|
247
|
+
def self.beginning_of_day(time = Time.now)
|
248
|
+
Time.new(time.year, time.month, time.day)
|
249
|
+
end
|
235
250
|
end
|
236
251
|
end
|
data/lib/timet/version.rb
CHANGED