work_hours_calculator 0.1.3 → 0.2.0
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/README.md +39 -5
- data/bin/work_calculator +19 -12
- data/lib/work_hours_calculator/calculate.rb +14 -1
- data/lib/work_hours_calculator/parser.rb +15 -1
- data/lib/work_hours_calculator/version.rb +1 -1
- data/lib/work_hours_calculator.rb +6 -0
- metadata +12 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9ea0396592df2aaeb627a551ad5483b9d30987af8a3d89056da518e3f9a5958
|
4
|
+
data.tar.gz: 88934a23c56ae29730857b91224132152c3a6a6aea5b3ffc59c25cbd48799991
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a72b717b72205f19a76bdeaac0ce7ab5a176f8b7588709a922491a19cc5e91531ad92c6116ac7fbb41c7819af285a4cd7b828a7ce566b367c7a1172671295ea1
|
7
|
+
data.tar.gz: 97691b81ce8fad9198d49fd64db685fb307fb98d39258320014054a76861cf1e4ca804168ff34fdf33c925300a63cecef70dd1bceeea5931c747a56b98122fe3
|
data/README.md
CHANGED
@@ -12,6 +12,7 @@ This is a Ruby command-line tool for calculating the total work hours, break hou
|
|
12
12
|
- Return net work hours after subtracting break times.
|
13
13
|
- Return net break hours.
|
14
14
|
- Support for csv import or export.
|
15
|
+
- Log your work hours for the day.
|
15
16
|
|
16
17
|
## Installation
|
17
18
|
|
@@ -25,6 +26,14 @@ To calculate your work hours, run the following command:
|
|
25
26
|
work_calculator -s "9:30:00 AM" -e "7:00:00 PM" -b "12:49:00 PM-1:26:00 PM,3:42:00 PM-4:35:00 PM"
|
26
27
|
```
|
27
28
|
|
29
|
+
### Expected Output
|
30
|
+
```bash
|
31
|
+
Total Work Decimal Hours: 9.5 hours
|
32
|
+
Total Break Decimal Hours: 1.5 hours
|
33
|
+
Total Break Hours: 1:30 minutes
|
34
|
+
Net Work Decimal Hours: 8.0 hours
|
35
|
+
```
|
36
|
+
|
28
37
|
## Using CSV Input
|
29
38
|
You can also use a CSV file to provide the input data. The CSV file should have the following format:
|
30
39
|
```text
|
@@ -40,13 +49,33 @@ You can export the results to a CSV file by specifying the --csv-output option:
|
|
40
49
|
```bash
|
41
50
|
work_calculator -s "9:30:00 AM" -e "7:00:00 PM" -b "12:49:00 PM-1:26:00 PM,3:42:00 PM-4:35:00 PM" --csv-output path/to/your/output.csv
|
42
51
|
```
|
52
|
+
## Logging Work Hours for the Day
|
53
|
+
You can log your work hours throughout the day, much like a diary of your work. To log your work, run the following command:
|
54
|
+
```bash
|
55
|
+
work_calculator --log some-description-goes-here
|
56
|
+
```
|
57
|
+
Example:
|
58
|
+
```bash
|
59
|
+
work_calculator --log "working on an interesting project"
|
60
|
+
# > Logged work: 2025-02-22 19:47:24 - working on an interesting project
|
43
61
|
|
44
|
-
|
62
|
+
work_calculator --log "break"
|
63
|
+
# > Logged work: 2025-02-22 19:48:11 - break
|
64
|
+
|
65
|
+
work_calculator --log "end"
|
66
|
+
# > Logged work: 2025-02-22 19:50:01 - end
|
67
|
+
```
|
68
|
+
Please note of the system keywords for the description:
|
69
|
+
- "break" : considered the record log as a break
|
70
|
+
- "end" : considered the record log as finished or has ended work for the day.
|
71
|
+
|
72
|
+
### Calculate the hours from your work log
|
45
73
|
```bash
|
46
|
-
|
47
|
-
Total
|
48
|
-
Total Break Hours:
|
49
|
-
|
74
|
+
work_calculator --calculate-log "2025-02-22"
|
75
|
+
# > Total Work Decimal Hours: 3.2 hours
|
76
|
+
# > Total Break Decimal Hours: 2.15 hours
|
77
|
+
# > Total Break Hours: 2:09 minutes
|
78
|
+
# > Net Work Decimal Hours: 1.05 hours
|
50
79
|
```
|
51
80
|
|
52
81
|
## Usage
|
@@ -60,8 +89,13 @@ Run the script from the command line with the required options for start time, e
|
|
60
89
|
| -b or --breaks | Specifies break periods in comma-separated start_time-end_time format | `-b "12:49:00 PM-1:26:00 PM,3:42:00 PM-4:35:00 PM"` |
|
61
90
|
| --csv-input | Specifies the CSV input file | `--csv-input path/to/your/input.csv`s |
|
62
91
|
| --csv-output | Specifies the CSV output file | `--csv-output path/to/your/output.csv` |
|
92
|
+
| --log DESCRIPTION | Log work with description | `--log "working on a project"` |
|
93
|
+
| --log-dir DIRECTORY | Specify a directory to store log files | `--lod-dir` <br><br>or export it as an ENV variable so you don't have to specify the directory arg everytime. <br> `export WORK_HOURS_LOG_DIR="/some/path"`|
|
94
|
+
| --calculate-log DATE | Calculate hours from the log file for the specified date (e.g., '2023-10-01') | `--calculate-log 2025-02-01` |
|
63
95
|
| -h or --help | Displays help instructions | `-h` |
|
64
96
|
|
97
|
+
|
98
|
+
|
65
99
|
## TODOS
|
66
100
|
- Add support for overtimes
|
67
101
|
- Add support for daily or weekly or monthly summary for csv inputs
|
data/bin/work_calculator
CHANGED
@@ -4,21 +4,28 @@
|
|
4
4
|
require_relative '../lib/work_hours_calculator'
|
5
5
|
require_relative '../lib/work_hours_calculator/parser'
|
6
6
|
require_relative '../lib/work_hours_calculator/csv_handler'
|
7
|
+
require_relative '../lib/work_hours_calculator/logger'
|
7
8
|
|
8
9
|
options = WorkHoursCalculator::Parser.parse_options
|
9
10
|
|
10
|
-
if options[:
|
11
|
-
|
12
|
-
results = WorkHoursCalculator.calculate(data[:work_start], data[:work_end], data[:breaks])
|
11
|
+
if options[:log]
|
12
|
+
WorkHoursCalculator::Logger.log_work(options[:description])
|
13
13
|
else
|
14
|
-
|
15
|
-
|
14
|
+
if options[:calculate_log]
|
15
|
+
results = WorkHoursCalculator.calculate_hours_from_log(options[:log_date])
|
16
|
+
elsif options[:csv_input]
|
17
|
+
data = WorkHoursCalculator::CSVHandler.import(options[:csv_input])
|
18
|
+
results = WorkHoursCalculator.calculate(data[:work_start], data[:work_end], data[:breaks])
|
19
|
+
else
|
20
|
+
results = WorkHoursCalculator.calculate(options[:start_time], options[:end_time], options[:breaks])
|
21
|
+
end
|
16
22
|
|
17
|
-
if options[:csv_output]
|
18
|
-
|
19
|
-
else
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
23
|
+
if options[:csv_output]
|
24
|
+
WorkHoursCalculator::CSVHandler.export(options[:csv_output], results)
|
25
|
+
else
|
26
|
+
puts "Total Work Decimal Hours: #{results[:total_work_decimal_hours].round(2)} hours"
|
27
|
+
puts "Total Break Decimal Hours: #{results[:total_break_decimal_hours].round(2)} hours"
|
28
|
+
puts "Total Break Hours: #{results[:total_break_hours]} minutes"
|
29
|
+
puts "Net Work Decimal Hours: #{results[:net_work_decimal_hours].round(2)} hours"
|
30
|
+
end
|
24
31
|
end
|
@@ -6,6 +6,8 @@ require "optparse"
|
|
6
6
|
module WorkHoursCalculator
|
7
7
|
class Error < StandardError; end
|
8
8
|
|
9
|
+
class InvalidTimeError < StandardError; end
|
10
|
+
|
9
11
|
# This class takes a work_start, work_end, and breaks as input,
|
10
12
|
# and calculates the total work hours, total break hours, and net work hours.
|
11
13
|
class Calculate
|
@@ -13,11 +15,20 @@ module WorkHoursCalculator
|
|
13
15
|
@work_start_time = parse_time(work_start)
|
14
16
|
@work_end_time = parse_time(work_end)
|
15
17
|
@breaks = breaks.map { |start, end_time| [parse_time(start), parse_time(end_time)] }
|
18
|
+
|
19
|
+
raise InvalidTimeError, "Work start time is invalid" if @work_start_time.nil?
|
20
|
+
raise InvalidTimeError, "Work end time is invalid" if @work_end_time.nil?
|
16
21
|
end
|
17
22
|
|
18
23
|
def execute
|
19
24
|
total_work_time = @work_end_time - @work_start_time
|
20
|
-
total_break_time = @breaks.reduce(0)
|
25
|
+
total_break_time = @breaks.reduce(0) do |sum, (start, end_time)|
|
26
|
+
if start && end_time
|
27
|
+
sum + (end_time - start)
|
28
|
+
else
|
29
|
+
sum
|
30
|
+
end
|
31
|
+
end
|
21
32
|
net_work_time = total_work_time - total_break_time
|
22
33
|
|
23
34
|
{
|
@@ -32,6 +43,8 @@ module WorkHoursCalculator
|
|
32
43
|
|
33
44
|
def parse_time(time_str)
|
34
45
|
Time.parse(time_str)
|
46
|
+
rescue ArgumentError, TypeError
|
47
|
+
nil
|
35
48
|
end
|
36
49
|
|
37
50
|
def to_hours(seconds)
|
@@ -15,17 +15,31 @@ module WorkHoursCalculator
|
|
15
15
|
opts.on("-b", "--breaks x,y", Array, "Break periods as comma-separated pairs (e.g., '12:49:00 PM-1:26:00 PM,3:42:00 PM-4:35:00 PM')") { |v| options[:breaks] = v.map { |pair| pair.split("-") } }
|
16
16
|
opts.on("--csv-input FILE", "CSV input file") { |v| options[:csv_input] = v }
|
17
17
|
opts.on("--csv-output FILE", "CSV output file") { |v| options[:csv_output] = v }
|
18
|
+
opts.on("--log DESCRIPTION", "Log work with description") { |v|
|
19
|
+
options[:log] = true
|
20
|
+
options[:description] = v
|
21
|
+
}
|
22
|
+
opts.on("--log-dir DIRECTORY", "Directory to store log files") { |v| options[:log_dir] = v }
|
23
|
+
opts.on("--calculate-log DATE", "Calculate hours from the log file for the specified date (e.g., '2023-10-01')") { |v|
|
24
|
+
options[:calculate_log] = true
|
25
|
+
options[:log_date] = v
|
26
|
+
}
|
18
27
|
opts.on("-h", "--help", "Show help") {
|
19
28
|
puts opts
|
20
29
|
exit
|
21
30
|
}
|
22
31
|
end.parse!(args, into: options)
|
23
32
|
|
24
|
-
if options[:csv_input].nil? && (options[:start_time].nil? || options[:end_time].nil? || options[:breaks].nil?)
|
33
|
+
if (options[:csv_input].nil? && options[:log].nil? && options[:calculate_log].nil?) && (options[:start_time].nil? || options[:end_time].nil? || options[:breaks].nil?)
|
25
34
|
puts "Please provide start time, end time, and break times, or a CSV input file."
|
26
35
|
exit
|
27
36
|
end
|
28
37
|
|
38
|
+
if options[:log] && options[:description].nil?
|
39
|
+
puts "Error: Description is required when logging work hours."
|
40
|
+
exit 1
|
41
|
+
end
|
42
|
+
|
29
43
|
options
|
30
44
|
end
|
31
45
|
end
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require_relative "work_hours_calculator/version"
|
4
4
|
require_relative "work_hours_calculator/calculate"
|
5
|
+
require_relative "work_hours_calculator/logger"
|
5
6
|
|
6
7
|
module WorkHoursCalculator
|
7
8
|
class Error < StandardError; end
|
@@ -9,4 +10,9 @@ module WorkHoursCalculator
|
|
9
10
|
def self.calculate(work_start, work_end, breaks)
|
10
11
|
WorkHoursCalculator::Calculate.new(work_start, work_end, breaks).execute
|
11
12
|
end
|
13
|
+
|
14
|
+
def self.calculate_hours_from_log(date)
|
15
|
+
results = WorkHoursCalculator::Logger.get_hours_from_log(date)
|
16
|
+
WorkHoursCalculator::Calculate.new(results[:work_start], results[:work_end], results[:breaks]).execute
|
17
|
+
end
|
12
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: work_hours_calculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerda Decio
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: csv
|
@@ -76,10 +76,18 @@ licenses:
|
|
76
76
|
metadata:
|
77
77
|
allowed_push_host: https://rubygems.org
|
78
78
|
homepage_uri: https://github.com/gerdadecio/work-hours-calculator-ruby
|
79
|
-
|
79
|
+
documentation_uri: https://github.com/gerdadecio/work-hours-calculator-ruby
|
80
80
|
bug_tracker_uri: https://github.com/gerdadecio/work-hours-calculator-ruby/issues
|
81
81
|
changelog_uri: https://github.com/gerdadecio/work-hours-calculator-ruby/blob/main/CHANGELOG.md
|
82
|
-
post_install_message:
|
82
|
+
post_install_message: |
|
83
|
+
Thank you for installing the Work Hours Calculator gem!
|
84
|
+
|
85
|
+
You can set the log directory using the WORK_HOURS_LOG_DIR environment variable. If this variable is not set, the default log directory will be ~/work_hours_logs.
|
86
|
+
|
87
|
+
Example:
|
88
|
+
export WORK_HOURS_LOG_DIR="/path/to/custom/log_directory"
|
89
|
+
|
90
|
+
For more information, please refer to the README.md file.
|
83
91
|
rdoc_options: []
|
84
92
|
require_paths:
|
85
93
|
- lib
|