work_hours_calculator 0.1.2 → 0.1.4

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: 65bba7df1ee4be1e3ff3156cdad835d810537f83655ab2dd5127b129fa9ad4b1
4
- data.tar.gz: 471629cc87e04b8a294c9df8e11b3fc3a78d029b151642b99c8da8b25a80bce8
3
+ metadata.gz: 2d7296652efae4aa80651a3887ac25154161d71a72f9535f527934c4d760aa7f
4
+ data.tar.gz: 8a469a806bc11f9c01e9adcc4877016e52e223086b94a2d80f3d4f2305ec0df3
5
5
  SHA512:
6
- metadata.gz: fae10bb57ed10c25b3cd0c6e7cdbf20b4d5e45729bb1e16b6342c3b0cf310ee49cd0008ca70f16d6fcde000fd39c0cec3bb1306f461cec016fbd621d5a3949d4
7
- data.tar.gz: 43158888f694f1f650c4a148009e4752b68a7edc18b9790fddf145acabf6795fa7e522d361a590b7d49ddc34dea867a1d44ade2cb632a5f1f2e8b44092690d9c
6
+ metadata.gz: 8ce0a70e34578886ed9db9cc90f2106a79a600f82513ba2ffc6ebd3313f37b88c0d7977162379e8b31dbf29f4e50d49d7d7f9813a05cca440e2822bc748ae748
7
+ data.tar.gz: cb636ced3ad71141105816df20d7a1e902129750c29d7d0d58ccf2f6b99af120db63f941d6a600f912d6b69d0bb99f7d67b6951945667ed43bf02be0b0c41aab
data/README.md CHANGED
@@ -1,4 +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
+ [![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)
2
2
  # Work Hours Calculator CLI
3
3
 
4
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.
@@ -68,13 +68,13 @@ Run the script from the command line with the required options for start time, e
68
68
 
69
69
  ## Development
70
70
 
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.
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.
72
72
 
73
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).
74
74
 
75
75
  ## Contributing
76
76
 
77
- 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).
78
78
 
79
79
  ## Code of Conduct
80
80
 
@@ -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) { |sum, (start, end_time)| sum + (end_time - start) }
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WorkHoursCalculator
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.4"
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.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerda Decio
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: '5.14'
55
55
  description: This gem provides a command-line tool to calculate total work hours,
56
56
  total break hours, and net work hours based on input times. It supports CSV input
57
- and output, including Google Sheets integration.
57
+ and output.
58
58
  email:
59
59
  - contact@gerdadecio.com
60
60
  executables:
@@ -76,7 +76,7 @@ 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
- source_code_uri: https://github.com/gerdadecio/work-hours-calculator-ruby
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
82
  post_install_message:
@@ -97,5 +97,6 @@ requirements: []
97
97
  rubygems_version: 3.5.14
98
98
  signing_key:
99
99
  specification_version: 4
100
- 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.
101
102
  test_files: []