pacing 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50b06f040f89ce3ccdaefee4c021c09761a5ec9fd8bdc191e265ec89273b66cd
4
- data.tar.gz: 2474990fb943b971e864f9465fc64400506d7a2d07bb2448aa888e8513c08087
3
+ metadata.gz: 3c9f1bb20d57079d96b0bf851745a047e274cc2ac91698dafb61ddc34800875d
4
+ data.tar.gz: b83584cd4d641299955cb4b28666d742e17d6ac90ab0168bdf9898e3b20f7307
5
5
  SHA512:
6
- metadata.gz: 6cff295cef05c7176d9130a864419b64544f9485f97742d7d1ce068ced9f140c6a04e0cf84b5242cd5a3af011a1592490b5cb7c0ff06ed7ec145e578990ad52a
7
- data.tar.gz: 55d13813ea32e73591eba4ffe88acb6c31caa86fc5a1f2ad5b9e3aa27ca3cea1426c6459c0158a62c3faa5e96a79414dba31b367af196b044d972580bb52c1ac
6
+ metadata.gz: 7f9df40d14c5428d64a4465930a675f803eb428d1ccc0602de23e591fd3225993c8c37b9e3437e1954885cd07584d29c7d447d93e2fda4d9d94df4cae0da60a6
7
+ data.tar.gz: ed423571438c677b40fde49964c6866fd63a40c763a93c2bcac563f9547c12ad64d5371a4ef705d97f35f2b7594b34dd00b0ee70d5951d29aec1ab05a3b19172
data/README.md CHANGED
@@ -62,39 +62,41 @@ paced.calculate
62
62
 
63
63
  =begin
64
64
  => {
65
- school_plan_services: [
66
- {
67
- school_plan_type: "IEP"
68
- start_date: "01-01-2022",
69
- end_date: "01-01-2023",
70
- type_of_service: "Language Therapy",
71
- frequency: 6,
72
- interval: "monthly",
73
- time_per_session_in_minutes: 30,
74
- completed_visits_for_current_interval: 7,
75
- extra_sessions_allowable: 1,
76
- interval_for_extra_sessions_allowable: "monthly"
77
- reset_date: "01-31-2022"
78
- pace: 4,
79
- pace_indicator: "🐇"
80
- },
81
- {
82
- school_plan_type: "IEP"
83
- start_date: "01-01-2022",
84
- end_date: "01-01-2023",
85
- type_of_service: "Physical Therapy",
86
- frequency: 6,
87
- interval: "monthly",
88
- time_per_session_in_minutes: 30,
89
- completed_visits_for_current_interval: 7,
90
- extra_sessions_allowable: 1,
91
- interval_for_extra_sessions_allowable: "monthly",
92
- reset_date: "01-31-2022"
93
- pace: 4,
94
- pace_indicator: "🐇"
95
- }
96
- ]
97
- }
65
+ school_plan_services: [
66
+ {
67
+ school_plan_type: "IEP",
68
+ start_date: "01-01-2022",
69
+ end_date: "01-01-2023",
70
+ type_of_service: "Language Therapy",
71
+ frequency: 6,
72
+ interval: "monthly",
73
+ time_per_session_in_minutes: 30,
74
+ completed_visits_for_current_interval: 7,
75
+ extra_sessions_allowable: 1,
76
+ interval_for_extra_sessions_allowable: "monthly",
77
+ pace: 3,
78
+ reset_date: "01-31-2022",
79
+ remaining_visits: 0,
80
+ pace_indicator: "🐇"
81
+ },
82
+ {
83
+ school_plan_type: "IEP",
84
+ start_date: "01-01-2022",
85
+ end_date: "01-01-2023",
86
+ type_of_service: "Physical Therapy",
87
+ frequency: 6,
88
+ interval: "monthly",
89
+ time_per_session_in_minutes: 30,
90
+ completed_visits_for_current_interval: 7,
91
+ extra_sessions_allowable: 1,
92
+ interval_for_extra_sessions_allowable: "monthly",
93
+ pace: 3,
94
+ reset_date: "01-31-2022",
95
+ remaining_visits: 0,
96
+ pace_indicator: "🐇"
97
+ }
98
+ ]
99
+ }
98
100
  =end
99
101
 
100
102
  ```
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pacing
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
data/pacing.gemspec CHANGED
@@ -16,5 +16,6 @@ Gem::Specification.new do |s|
16
16
  s.require_paths = ["lib"]
17
17
 
18
18
  s.add_development_dependency "rspec"
19
+ s.add_runtime_dependency "holidays", '~> 8.6', '>= 8.6'
19
20
  end
20
21
 
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: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin S. Dias
@@ -26,6 +26,26 @@ dependencies:
26
26
  - - ">="
27
27
  - !ruby/object:Gem::Version
28
28
  version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: holidays
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '8.6'
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '8.6'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '8.6'
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '8.6'
29
49
  description: Pacing is built for cases where there are therapy frequency limitations
30
50
  that need to be adhered to. For example, in the case of an [IEP (Individualized
31
51
  Education Program)](https://ambiki.com/glossary-concepts/iep), 504 plan, or a Services