timet 1.4.4 → 1.4.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/CHANGELOG.md +12 -0
- data/lib/timet/application.rb +1 -0
- data/lib/timet/version.rb +2 -2
- metadata +31 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: beb4b20fdb1c0ba5b1a6161997c2aee3cb2fd897fb260a6e3c0519a8e8c76dc7
|
4
|
+
data.tar.gz: 506dcd2c9e67642f227b411d29d562dc01e028944116cee047056d970e416214
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c513cd6ebceb8aa6519945be0b2af95a48df688e8d9bae79b3dca13051529c43ac11278c11311da7cf7f688ea6e34a5fb8e9ebef7d8c4c38ced259f280ead537
|
7
|
+
data.tar.gz: 4d03f8544328bc6b84fd2cc52b43f4d6a75bbebb062a6ee9b4944a91276bf0448d4b50c6b04e2d4eb6b4cbb69c0ee60271987b58c0f0dea2af79397387a6b534
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.4.5] - 2024-11-18
|
4
|
+
|
5
|
+
**Improvements:**
|
6
|
+
- Added `base64` gem to the Gemfile to ensure compatibility with Ruby 3.4.0.
|
7
|
+
- Updated the `json` gem from version 2.8.1 to 2.8.2.
|
8
|
+
- Updated the `rubocop-ast` gem from version 1.35.0 to 1.36.1.
|
9
|
+
- Added the `icalendar` gem to the application.
|
10
|
+
|
11
|
+
**Bug Fixes:**
|
12
|
+
- Fixed the deprecation warning related to `base64` being removed from the Ruby standard library in Ruby 3.4.0.
|
13
|
+
|
14
|
+
|
3
15
|
## [1.4.4] - 2024-11-12
|
4
16
|
|
5
17
|
**Improvements:**
|
data/lib/timet/application.rb
CHANGED
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.4.
|
4
|
+
version: 1.4.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: 2024-11-
|
11
|
+
date: 2024-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -58,6 +58,34 @@ dependencies:
|
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
60
|
version: '1.7'
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: icalendar
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '2'
|
68
|
+
type: :runtime
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '2'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: descriptive_statistics
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '2'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2'
|
61
89
|
description: Timet is a command-line time tracker that keeps track of your activities.
|
62
90
|
email:
|
63
91
|
- frankvielma@gmail.com
|
@@ -116,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
144
|
- !ruby/object:Gem::Version
|
117
145
|
version: '0'
|
118
146
|
requirements: []
|
119
|
-
rubygems_version: 3.5.
|
147
|
+
rubygems_version: 3.5.11
|
120
148
|
signing_key:
|
121
149
|
specification_version: 4
|
122
150
|
summary: Command line time tracker with reports
|