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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d166f867a52e9f405e14c126fbb26ae6f21e4a5a75c330c044868e20ddd73e43
4
- data.tar.gz: 107a169b3757ba63c5ef68983c23db48c95d2e666b7584ba52db1f1a0bf83388
3
+ metadata.gz: e0baff1626d9ecb657e068cc2363518939f510b3980d77ba15f011381cbad270
4
+ data.tar.gz: 8221eaa1ec3c962962731868b9a980e852159e5954ef9c7fb49576d91b17f37f
5
5
  SHA512:
6
- metadata.gz: 809589106d0d8c1691cef5f07597ecf41549e094eb36b75a76a89f36e23641abf1ce8a4302ff9ff335129aff9ae50c20ca1b0b0c7c7192d4bd11e4ef68491742
7
- data.tar.gz: 91f151838e542add92cc890c99dc3987c80342e6b02d81d739424d7bfd8c5ed452beb17cbae2f8515d78b077ecafc4d73279f7a42dc36c281c01da830c174f23
6
+ metadata.gz: 8fb1f9bb9bc8f161456a068fd5e4ffe2342bfadfa0e9c39013c3718670123431356ab9ebb7d1ffd1c3e9d3b8bf41a78826be4ebdab0865f89b0f841bd3362ebf
7
+ data.tar.gz: 5a2651adb63bb57b03855ab2e41274cd32acd649616232fe122d86d4487054e86ee9906992895186cbcee10aae6d8b550b9cad3a40620628167fe3ae796eaf57
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ [![Gem Version](https://badge.fury.io/rb/work_hours_calculator.svg?icon=si%3Arubygems)](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,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 spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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/[USERNAME]/work_hours_calculator. 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/[USERNAME]/work_hours_calculator/blob/main/CODE_OF_CONDUCT.md).
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
 
@@ -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.3"
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.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, including Google Sheets integration.
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 to calculate work hours, break hours, and net work hours.
100
+ summary: A command line tool that calculates work hours, break hours, and net work
101
+ hours.
87
102
  test_files: []