work_hours_calculator 0.1.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d166f867a52e9f405e14c126fbb26ae6f21e4a5a75c330c044868e20ddd73e43
4
- data.tar.gz: 107a169b3757ba63c5ef68983c23db48c95d2e666b7584ba52db1f1a0bf83388
3
+ metadata.gz: 65bba7df1ee4be1e3ff3156cdad835d810537f83655ab2dd5127b129fa9ad4b1
4
+ data.tar.gz: 471629cc87e04b8a294c9df8e11b3fc3a78d029b151642b99c8da8b25a80bce8
5
5
  SHA512:
6
- metadata.gz: 809589106d0d8c1691cef5f07597ecf41549e094eb36b75a76a89f36e23641abf1ce8a4302ff9ff335129aff9ae50c20ca1b0b0c7c7192d4bd11e4ef68491742
7
- data.tar.gz: 91f151838e542add92cc890c99dc3987c80342e6b02d81d739424d7bfd8c5ed452beb17cbae2f8515d78b077ecafc4d73279f7a42dc36c281c01da830c174f23
6
+ metadata.gz: fae10bb57ed10c25b3cd0c6e7cdbf20b4d5e45729bb1e16b6342c3b0cf310ee49cd0008ca70f16d6fcde000fd39c0cec3bb1306f461cec016fbd621d5a3949d4
7
+ data.tar.gz: 43158888f694f1f650c4a148009e4752b68a7edc18b9790fddf145acabf6795fa7e522d361a590b7d49ddc34dea867a1d44ade2cb632a5f1f2e8b44092690d9c
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ [![Gem Version](https://badge.fury.io/rb/work_hours_calculator.svg)](https://badge.fury.io/rb/work_hours_calculator) [![Maintainability](https://api.codeclimate.com/v1/badges/f8dae8435980691b04fb/maintainability)](https://codeclimate.com/github/gerdadecio/work-hours-calculator-ruby/maintainability) [![codecov](https://codecov.io/gh/gerdadecio/work-hours-calculator-ruby/graph/badge.svg?token=N87XQ9ELXC)](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
- work_hours_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"
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
- ruby ./bin/work_calculator.rb --csv-input path/to/your/input.csv
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
- ruby ./bin/work_calculator.rb -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
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WorkHoursCalculator
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.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