work_hours_calculator 0.1.1 → 0.1.3
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 +13 -5
- data/lib/work_hours_calculator/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e0baff1626d9ecb657e068cc2363518939f510b3980d77ba15f011381cbad270
|
4
|
+
data.tar.gz: 8221eaa1ec3c962962731868b9a980e852159e5954ef9c7fb49576d91b17f37f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fb1f9bb9bc8f161456a068fd5e4ffe2342bfadfa0e9c39013c3718670123431356ab9ebb7d1ffd1c3e9d3b8bf41a78826be4ebdab0865f89b0f841bd3362ebf
|
7
|
+
data.tar.gz: 5a2651adb63bb57b03855ab2e41274cd32acd649616232fe122d86d4487054e86ee9906992895186cbcee10aae6d8b550b9cad3a40620628167fe3ae796eaf57
|
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,15 +62,19 @@ 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
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake
|
71
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
64
72
|
|
65
73
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
66
74
|
|
67
75
|
## Contributing
|
68
76
|
|
69
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
77
|
+
Bug reports and pull requests are welcome on GitHub at [https://github.com/gerdadecio/work-hours-calculator-ruby](https://github.com/gerdadecio/work-hours-calculator-ruby). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/gerdadecio/work-hours-calculator-ruby/blob/main/CODE_OF_CONDUCT.md).
|
70
78
|
|
71
79
|
## Code of Conduct
|
72
80
|
|
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.3
|
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
|
@@ -40,7 +54,7 @@ dependencies:
|
|
40
54
|
version: '5.14'
|
41
55
|
description: This gem provides a command-line tool to calculate total work hours,
|
42
56
|
total break hours, and net work hours based on input times. It supports CSV input
|
43
|
-
and output
|
57
|
+
and output.
|
44
58
|
email:
|
45
59
|
- contact@gerdadecio.com
|
46
60
|
executables:
|
@@ -83,5 +97,6 @@ requirements: []
|
|
83
97
|
rubygems_version: 3.5.14
|
84
98
|
signing_key:
|
85
99
|
specification_version: 4
|
86
|
-
summary: A tool
|
100
|
+
summary: A command line tool that calculates work hours, break hours, and net work
|
101
|
+
hours.
|
87
102
|
test_files: []
|