work_hours_calculator 0.1.2 → 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 +3 -3
- data/lib/work_hours_calculator/version.rb +1 -1
- metadata +4 -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,4 +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
|
+
[](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)
|
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
|
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/
|
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
|
|
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
|
@@ -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
|
57
|
+
and output.
|
58
58
|
email:
|
59
59
|
- contact@gerdadecio.com
|
60
60
|
executables:
|
@@ -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
|
100
|
+
summary: A command line tool that calculates work hours, break hours, and net work
|
101
|
+
hours.
|
101
102
|
test_files: []
|