work_hours_calculator 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c7f54c5c074ce375984a55c820573bb50bf06bf1275ee078e810a8983d680f1d
4
+ data.tar.gz: bb457aeee5bd2ccd9cfe5e04cdb87463156eb0539c00db8aeb3b8f77712bbc10
5
+ SHA512:
6
+ metadata.gz: 27e180417ba87b78e8942cdb6ba130fbe6838ad082bcd926ac2c051cad42c3913c216c5816f43b14bc47f729246fd1d9d9531f7b1d0645a226b0fe10d2edcaac
7
+ data.tar.gz: 9d06704b2219d71ca478e6b9c031a6a442bc31d2a35587ae8e4ffa1274ecd012613a89d87be1f2027c923b1087021035301bd11784fdf13f9c352ec01e37ff01
data/LICENCE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Gerda Decio
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,73 @@
1
+ # Work Hours Calculator CLI
2
+
3
+ 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.
4
+
5
+ ## Description
6
+ This is a Ruby command-line tool for calculating the total work hours, break hours, and net work hours (after subtracting breaks) based on provided work start time, end time, and break periods.
7
+
8
+ ## Features
9
+ - Calculate total work hours between start and end times.
10
+ - Account for multiple break periods.
11
+ - Return net work hours after subtracting break times.
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ gem install work_hours_calculator
17
+ ```
18
+
19
+ # Example
20
+ To calculate your work hours, run the following command:
21
+ ```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"
23
+ ```
24
+
25
+ ## Using CSV Input
26
+ You can also use a CSV file to provide the input data. The CSV file should have the following format:
27
+ ```text
28
+ work_start,work_end,breaks
29
+ 9:00 AM,5:00 PM,"12:00 PM-12:30 PM,3:00 PM-3:15 PM"
30
+ ```
31
+ To calculate your work hours using a CSV file, run the following command:
32
+ ```bash
33
+ ruby ./bin/work_calculator.rb --csv-input path/to/your/input.csv
34
+ ```
35
+ ## Exporting Results to CSV
36
+ 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
38
+ ```
39
+
40
+ # Expected Output
41
+ ```bash
42
+ Total Work Decimal Hours: 9.5 hours
43
+ Total Break Decimal Hours: 1.5 hours
44
+ Total Break Hours: 1:30 minutes
45
+ Net Work Decimal Hours: 8.0 hours
46
+ ```
47
+
48
+ ## Usage
49
+ Run the script from the command line with the required options for start time, end time, and break periods.
50
+
51
+ ### Command Line Options
52
+ | Option | Description | Example |
53
+ | -------- | ------- | ------- |
54
+ | -s or --start-time | Specifies the work start time | `-s "9:30:00 AM"` |
55
+ | -e or --end-time | Specifies the work end time | `-e "6:00:00 PM"` |
56
+ | -b or --breaks | Specifies break periods in comma-separated start_time-end_time format | `-b "12:49:00 PM-1:26:00 PM,3:42:00 PM-4:35:00 PM"` |
57
+ | --csv-input | Specifies the CSV input file | `--csv-input path/to/your/input.csv`s |
58
+ | --csv-output | Specifies the CSV output file | `--csv-output path/to/your/output.csv` |
59
+ | -h or --help | Displays help instructions | `-h` |
60
+
61
+ ## Development
62
+
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.
64
+
65
+ 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
+
67
+ ## Contributing
68
+
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).
70
+
71
+ ## Code of Conduct
72
+
73
+ Everyone interacting in the WorkHoursCalculator project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/work_hours_calculator/blob/main/CODE_OF_CONDUCT.md).
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require_relative '../lib/work_hours_calculator'
5
+ require_relative '../lib/work_hours_calculator/parser'
6
+ require_relative '../lib/work_hours_calculator/csv_handler'
7
+
8
+ options = WorkHoursCalculator::Parser.parse_options
9
+
10
+ if options[:csv_input]
11
+ data = WorkHoursCalculator::CSVHandler.import(options[:csv_input])
12
+ results = WorkHoursCalculator.calculate(data[:work_start], data[:work_end], data[:breaks])
13
+ else
14
+ results = WorkHoursCalculator.calculate(options[:start_time], options[:end_time], options[:breaks])
15
+ end
16
+
17
+ if options[:csv_output]
18
+ WorkHoursCalculator::CSVHandler.export(options[:csv_output], results)
19
+ else
20
+ puts "Total Work Decimal Hours: #{results[:total_work_decimal_hours].round(2)} hours"
21
+ puts "Total Break Decimal Hours: #{results[:total_break_decimal_hours].round(2)} hours"
22
+ puts "Total Break Hours: #{results[:total_break_hours]} minutes"
23
+ puts "Net Work Decimal Hours: #{results[:net_work_decimal_hours].round(2)} hours"
24
+ end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "time"
4
+ require "optparse"
5
+
6
+ module WorkHoursCalculator
7
+ class Error < StandardError; end
8
+
9
+ # This class takes a work_start, work_end, and breaks as input,
10
+ # and calculates the total work hours, total break hours, and net work hours.
11
+ class Calculate
12
+ def initialize(work_start, work_end, breaks)
13
+ @work_start_time = parse_time(work_start)
14
+ @work_end_time = parse_time(work_end)
15
+ @breaks = breaks.map { |start, end_time| [parse_time(start), parse_time(end_time)] }
16
+ end
17
+
18
+ def execute
19
+ total_work_time = @work_end_time - @work_start_time
20
+ total_break_time = @breaks.reduce(0) { |sum, (start, end_time)| sum + (end_time - start) }
21
+ net_work_time = total_work_time - total_break_time
22
+
23
+ {
24
+ total_work_decimal_hours: to_hours(total_work_time),
25
+ total_break_decimal_hours: to_hours(total_break_time),
26
+ total_break_hours: to_hour_and_minutes(to_hours(total_break_time)),
27
+ net_work_decimal_hours: to_hours(net_work_time)
28
+ }
29
+ end
30
+
31
+ private
32
+
33
+ def parse_time(time_str)
34
+ Time.parse(time_str)
35
+ end
36
+
37
+ def to_hours(seconds)
38
+ seconds / 3600.0
39
+ end
40
+
41
+ def to_hour_and_minutes(hours)
42
+ total_minutes = (hours * 60).round
43
+ hours = total_minutes / 60
44
+ minutes = total_minutes % 60
45
+ format("%d:%02d", hours, minutes)
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WorkHoursCalculator
4
+ require "csv"
5
+
6
+ # Class to handle CSV import and export
7
+ class CSVHandler
8
+ def self.import(file_path)
9
+ data = CSV.read(file_path, headers: true)
10
+ work_start = data["work_start"].first
11
+ work_end = data["work_end"].first
12
+ breaks = data["breaks"].first.split(",").map { |b| b.split("-") }
13
+ {work_start: work_start, work_end: work_end, breaks: breaks}
14
+ end
15
+
16
+ def self.export(file_path, results)
17
+ CSV.open(file_path, "w") do |csv|
18
+ csv << ["total_work_decimal_hours", "total_break_decimal_hours", "total_break_hours", "net_work_decimal_hours"]
19
+ csv << [results[:total_work_decimal_hours], results[:total_break_decimal_hours], results[:total_break_hours], results[:net_work_decimal_hours]]
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "optparse"
4
+
5
+ # Parses command-line options for the work calculator.
6
+ module WorkHoursCalculator
7
+ class Parser
8
+ def self.parse_options(args = ARGV)
9
+ options = {}
10
+ OptionParser.new do |opts|
11
+ opts.banner = "Usage: work_calculator.rb [options]"
12
+
13
+ opts.on("-s", "--start-time START", "Work start time (e.g., '9:30:00 AM')") { |v| options[:start_time] = v }
14
+ opts.on("-e", "--end-time END", "Work end time (e.g., '6:00:00 PM')") { |v| options[:end_time] = v }
15
+ opts.on("-b", "--breaks x,y", Array, "Break periods as comma-separated pairs (e.g., '12:49:00 PM-1:26:00 PM,3:42:00 PM-4:35:00 PM')") { |v| options[:breaks] = v.map { |pair| pair.split("-") } }
16
+ opts.on("--csv-input FILE", "CSV input file") { |v| options[:csv_input] = v }
17
+ opts.on("--csv-output FILE", "CSV output file") { |v| options[:csv_output] = v }
18
+ opts.on("-h", "--help", "Show help") {
19
+ puts opts
20
+ exit
21
+ }
22
+ end.parse!(args, into: options)
23
+
24
+ if options[:csv_input].nil? && (options[:start_time].nil? || options[:end_time].nil? || options[:breaks].nil?)
25
+ puts "Please provide start time, end time, and break times, or a CSV input file."
26
+ exit
27
+ end
28
+
29
+ options
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WorkHoursCalculator
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "work_hours_calculator/version"
4
+ require_relative "work_hours_calculator/calculate"
5
+
6
+ module WorkHoursCalculator
7
+ class Error < StandardError; end
8
+
9
+ def self.calculate(work_start, work_end, breaks)
10
+ WorkHoursCalculator::Calculate.new(work_start, work_end, breaks).execute
11
+ end
12
+ end
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: work_hours_calculator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Gerda Decio
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-02-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: csv
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '5.14'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '5.14'
41
+ description: This gem provides a command-line tool to calculate total work hours,
42
+ total break hours, and net work hours based on input times. It supports CSV input
43
+ and output, including Google Sheets integration.
44
+ email:
45
+ - contact@gerdadecio.com
46
+ executables:
47
+ - work_calculator.rb
48
+ extensions: []
49
+ extra_rdoc_files: []
50
+ files:
51
+ - LICENCE
52
+ - README.md
53
+ - bin/work_calculator.rb
54
+ - lib/work_hours_calculator.rb
55
+ - lib/work_hours_calculator/calculate.rb
56
+ - lib/work_hours_calculator/csv_handler.rb
57
+ - lib/work_hours_calculator/parser.rb
58
+ - lib/work_hours_calculator/version.rb
59
+ homepage: https://github.com/gerdadecio/work-hours-calculator-ruby
60
+ licenses:
61
+ - MIT
62
+ metadata:
63
+ allowed_push_host: https://rubygems.org
64
+ homepage_uri: https://github.com/gerdadecio/work-hours-calculator-ruby
65
+ source_code_uri: https://github.com/gerdadecio/work-hours-calculator-ruby
66
+ bug_tracker_uri: https://github.com/gerdadecio/work-hours-calculator-ruby/issues
67
+ changelog_uri: https://github.com/gerdadecio/work-hours-calculator-ruby/blob/main/CHANGELOG.md
68
+ post_install_message:
69
+ rdoc_options: []
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: 3.1.0
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubygems_version: 3.5.14
84
+ signing_key:
85
+ specification_version: 4
86
+ summary: A tool to calculate work hours, break hours, and net work hours.
87
+ test_files: []