pacing 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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/pacing.rb +2 -0
  3. metadata +64 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '09c4023f4237d4704bf05fde1aa11eb5020e1a734689b500e3d1be9250f7287d'
4
+ data.tar.gz: '09e90ccc23b060b072ef37608d57121a297c6996328179b0fd02a79b0ab189be'
5
+ SHA512:
6
+ metadata.gz: 879b7d06fd23d1f3340e294eb96c650bc23385afc1cb4b325789b2018cc8622dc9ca26854589d256eaa656b42e4027e9a469f02a9786913df49be3e2184c516b
7
+ data.tar.gz: c7b40f06249bf0378d55c75b8843829adedc0e0fa56f71265f00b5a6b04bc995bd61a2ede1c28c06084b4b35d7fda44204093c74c29d47fc60fcc84bbf003137
data/lib/pacing.rb ADDED
@@ -0,0 +1,2 @@
1
+ require "pacing/pacer"
2
+ require "pacing/version"
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pacing
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kevin S. Dias
8
+ - Samuel Okoth
9
+ - Lukong I. Nsoseka
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2022-10-14 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ description: Pacing is built for cases where there are therapy frequency limitations
30
+ that need to be adhered to. For example, in the case of an [IEP (Individualized
31
+ Education Program)](https://ambiki.com/glossary-concepts/iep), 504 plan, or a Services
32
+ plan. This gem helps to calculate remaining visits as well as a therapist's current
33
+ pace to meet visit mandates.
34
+ email: info@ambiki.com
35
+ executables: []
36
+ extensions: []
37
+ extra_rdoc_files: []
38
+ files:
39
+ - lib/pacing.rb
40
+ homepage: https://rubygems.org/gems/pacing
41
+ licenses:
42
+ - MIT
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubygems_version: 3.1.6
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Pacing is a tool that enables therapists to better manage and track their
63
+ caseload.
64
+ test_files: []