work_hours_calculator 0.1.0 → 0.1.2
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 +11 -3
- data/lib/work_hours_calculator/version.rb +1 -1
- metadata +17 -3
- /data/bin/{work_calculator.rb → work_calculator} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65bba7df1ee4be1e3ff3156cdad835d810537f83655ab2dd5127b129fa9ad4b1
|
4
|
+
data.tar.gz: 471629cc87e04b8a294c9df8e11b3fc3a78d029b151642b99c8da8b25a80bce8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fae10bb57ed10c25b3cd0c6e7cdbf20b4d5e45729bb1e16b6342c3b0cf310ee49cd0008ca70f16d6fcde000fd39c0cec3bb1306f461cec016fbd621d5a3949d4
|
7
|
+
data.tar.gz: 43158888f694f1f650c4a148009e4752b68a7edc18b9790fddf145acabf6795fa7e522d361a590b7d49ddc34dea867a1d44ade2cb632a5f1f2e8b44092690d9c
|
data/README.md
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
[](https://badge.fury.io/rb/work_hours_calculator) [](https://codeclimate.com/github/gerdadecio/work-hours-calculator-ruby/maintainability) [](https://codecov.io/gh/gerdadecio/work-hours-calculator-ruby)
|
1
2
|
# Work Hours Calculator CLI
|
2
3
|
|
3
4
|
Manually calculating work hours, breaks, and net hours in a spreadsheet can be tedious and prone to errors. To streamline the process and ensure accuracy, I created this CLI tool to handle the calculations quickly and easily.
|
@@ -9,6 +10,8 @@ This is a Ruby command-line tool for calculating the total work hours, break hou
|
|
9
10
|
- Calculate total work hours between start and end times.
|
10
11
|
- Account for multiple break periods.
|
11
12
|
- Return net work hours after subtracting break times.
|
13
|
+
- Return net break hours.
|
14
|
+
- Support for csv import or export.
|
12
15
|
|
13
16
|
## Installation
|
14
17
|
|
@@ -19,7 +22,7 @@ gem install work_hours_calculator
|
|
19
22
|
# Example
|
20
23
|
To calculate your work hours, run the following command:
|
21
24
|
```bash
|
22
|
-
|
25
|
+
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"
|
23
26
|
```
|
24
27
|
|
25
28
|
## Using CSV Input
|
@@ -30,11 +33,12 @@ work_start,work_end,breaks
|
|
30
33
|
```
|
31
34
|
To calculate your work hours using a CSV file, run the following command:
|
32
35
|
```bash
|
33
|
-
|
36
|
+
work_calculator --csv-input path/to/your/input.csv
|
34
37
|
```
|
35
38
|
## Exporting Results to CSV
|
36
39
|
You can export the results to a CSV file by specifying the --csv-output option:
|
37
|
-
|
40
|
+
```bash
|
41
|
+
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
|
38
42
|
```
|
39
43
|
|
40
44
|
# Expected Output
|
@@ -58,6 +62,10 @@ Run the script from the command line with the required options for start time, e
|
|
58
62
|
| --csv-output | Specifies the CSV output file | `--csv-output path/to/your/output.csv` |
|
59
63
|
| -h or --help | Displays help instructions | `-h` |
|
60
64
|
|
65
|
+
## TODOS
|
66
|
+
- Add support for overtimes
|
67
|
+
- Add support for daily or weekly or monthly summary for csv inputs
|
68
|
+
|
61
69
|
## Development
|
62
70
|
|
63
71
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: work_hours_calculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gerda Decio
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: mutex_m
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.1.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.1.0
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: minitest
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,13 +58,13 @@ description: This gem provides a command-line tool to calculate total work hours
|
|
44
58
|
email:
|
45
59
|
- contact@gerdadecio.com
|
46
60
|
executables:
|
47
|
-
- work_calculator
|
61
|
+
- work_calculator
|
48
62
|
extensions: []
|
49
63
|
extra_rdoc_files: []
|
50
64
|
files:
|
51
65
|
- LICENCE
|
52
66
|
- README.md
|
53
|
-
- bin/work_calculator
|
67
|
+
- bin/work_calculator
|
54
68
|
- lib/work_hours_calculator.rb
|
55
69
|
- lib/work_hours_calculator/calculate.rb
|
56
70
|
- lib/work_hours_calculator/csv_handler.rb
|
File without changes
|