pacing 1.0.0 → 2.0.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 +4 -4
- data/README.md +25 -4
- data/lib/pacing/error.rb +75 -0
- data/lib/pacing/normalizer.rb +210 -0
- data/lib/pacing/pacer.rb +56 -161
- data/lib/pacing/version.rb +1 -1
- data/lib/pacing.rb +2 -0
- data/pacing.gemspec +1 -1
- data/spec/pacing_spec.rb +416 -136
- metadata +5 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pacing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kevin S. Dias
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-11-
|
13
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rspec
|
@@ -48,7 +48,7 @@ dependencies:
|
|
48
48
|
version: '8.6'
|
49
49
|
description: Pacing is built for cases where there are therapy frequency limitations
|
50
50
|
that need to be adhered to. For example, in the case of an [IEP (Individualized
|
51
|
-
Education Program)](https://ambiki.com/glossary-concepts/iep), 504 plan, or a
|
51
|
+
Education Program)](https://ambiki.com/glossary-concepts/iep), 504 plan, or a Service
|
52
52
|
plan. This gem helps to calculate remaining visits as well as a therapist's current
|
53
53
|
pace to meet visit mandates.
|
54
54
|
email: info@ambiki.com
|
@@ -65,6 +65,8 @@ files:
|
|
65
65
|
- README.md
|
66
66
|
- Rakefile
|
67
67
|
- lib/pacing.rb
|
68
|
+
- lib/pacing/error.rb
|
69
|
+
- lib/pacing/normalizer.rb
|
68
70
|
- lib/pacing/pacer.rb
|
69
71
|
- lib/pacing/version.rb
|
70
72
|
- pacing.gemspec
|