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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9174050872f06486ce9307f0aa9ab28decce4345f7169cc0537741028a8cfcae
4
- data.tar.gz: 2eaa910c4a79265fe273bdeb9ff0cffb4f5e5330f8849c1ccc197d1ee5e5edbb
3
+ metadata.gz: 702fbd78abcbf5fc42347e44df5e6cf50fdefa290136651afbbb4691f09a2fed
4
+ data.tar.gz: c806105e1474db94c1160d7988238baeb902fcb2be4e074afb548c054889cbaf
5
5
  SHA512:
6
- metadata.gz: 61d368a8f2e30693c6c29abff6ae067001798b0b30c3012cfbce4fe0ced2d31ce0e89e76fe716e026b361d391ca0d13d58e29e61db6231fb23cbaed2e7cfd8fa
7
- data.tar.gz: '0299cb83c55d19053a98dcb795da56e485b14e7b45b10e7c45ed8f1ecc03218d0966a2f5b7a28c1d0939f1455d6e14978caa2cfb8a9bfc8509681f8d7fc813ae'
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
 
@@ -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 = Time.now.beginning_of_day.to_i
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
@@ -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
@@ -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.1'
10
- VERSION = '1.5.1'
9
+ # Timet::VERSION # => '1.5.1.1'
10
+ VERSION = '1.5.1.1'
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ version: 1.5.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Frank Vielma