simple_calendar 3.0.0 → 3.0.2

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: e11781a625cdf2a8812e5b7972feecb016b82abe0c1ad57b6687e90851f04f86
4
- data.tar.gz: 19f2e34143a16827b1b2a6255988ef53004477f91077e4e69bcfef31837aec31
3
+ metadata.gz: f4263f199e295c6a5e2912c70aa07cc9dc4c4ef1ba1e9075bf952a994c788789
4
+ data.tar.gz: f13526f95a5ed4bcb18673b2c2e59ae460576359935c414dc507f9bbb5a09331
5
5
  SHA512:
6
- metadata.gz: 140c319c81da2305230604b0101f6302e14d9952c2895ffab35a7d3c43cf7d4ab5eb4ad2111f0d2bb7246488446d9f09de71bb9b6e0bfe6ddeea11efba8b7bd0
7
- data.tar.gz: 8c2f960eaea8445f1a4f45b62d7ba5fd7864010a91c6ee37f4299443aa95bc4df70c760cea79bdaff35a166d65a0cbaa2b0b0caf1be289668705b337a1dd8c30
6
+ metadata.gz: 0ae5839ae76ba542cf86105ab9b57179d928b6adb7ef296e531bb71d18c0ef26cda03aad0a44d3fc94793ae0ede9d98cf8b1db8399192d2c0d365510d4998ae3
7
+ data.tar.gz: fa923a3da7a11a59668a9636fc904720967848912e2d50567084ae65c3bea79db482e38d0b89a5a51bb7d9b69ee2a40791e37da41a1f2b610c126ec5a99051d2
data/.gitignore CHANGED
@@ -5,6 +5,6 @@ pkg/*
5
5
  .ruby-version
6
6
  .ruby-gemset
7
7
  test/dummy/db/test.sqlite3
8
- test/dummy/log/test.log
9
- test/dummy/log/development.log
10
8
  test/dummy/db/development.sqlite3
9
+ test/dummy/log
10
+ test/dummy/tmp
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ### Unreleased
2
+
3
+ ### 3.0.2
4
+
5
+ * Handle `events: nil`
6
+
7
+ ### 3.0.1
8
+
9
+ * Refactor to use block from `render_in` call to better support custom calendars
10
+
1
11
  ### 3.0.0
2
12
 
3
13
  * Drop support for Rails 6.0 and earlier
data/Gemfile CHANGED
@@ -7,3 +7,5 @@ gem "standard"
7
7
 
8
8
  gem "puma"
9
9
  gem "sqlite3"
10
+
11
+ gem "web-console", "~> 4.2", group: :development
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  GIT
2
2
  remote: https://github.com/thoughtbot/appraisal.git
3
- revision: b200e636903700098bef25f4f51dbc4c46e4c04c
3
+ revision: feb78bcc6177038399bff098cb6c2bd4bca4972a
4
4
  specs:
5
- appraisal (2.4.1)
5
+ appraisal (2.5.0)
6
6
  bundler
7
7
  rake
8
8
  thor (>= 0.14.0)
@@ -10,78 +10,80 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- simple_calendar (3.0.0)
13
+ simple_calendar (3.0.2)
14
14
  rails (>= 6.1)
15
15
 
16
16
  GEM
17
17
  remote: http://rubygems.org/
18
18
  specs:
19
- actioncable (7.0.6)
20
- actionpack (= 7.0.6)
21
- activesupport (= 7.0.6)
19
+ actioncable (7.0.7.2)
20
+ actionpack (= 7.0.7.2)
21
+ activesupport (= 7.0.7.2)
22
22
  nio4r (~> 2.0)
23
23
  websocket-driver (>= 0.6.1)
24
- actionmailbox (7.0.6)
25
- actionpack (= 7.0.6)
26
- activejob (= 7.0.6)
27
- activerecord (= 7.0.6)
28
- activestorage (= 7.0.6)
29
- activesupport (= 7.0.6)
24
+ actionmailbox (7.0.7.2)
25
+ actionpack (= 7.0.7.2)
26
+ activejob (= 7.0.7.2)
27
+ activerecord (= 7.0.7.2)
28
+ activestorage (= 7.0.7.2)
29
+ activesupport (= 7.0.7.2)
30
30
  mail (>= 2.7.1)
31
31
  net-imap
32
32
  net-pop
33
33
  net-smtp
34
- actionmailer (7.0.6)
35
- actionpack (= 7.0.6)
36
- actionview (= 7.0.6)
37
- activejob (= 7.0.6)
38
- activesupport (= 7.0.6)
34
+ actionmailer (7.0.7.2)
35
+ actionpack (= 7.0.7.2)
36
+ actionview (= 7.0.7.2)
37
+ activejob (= 7.0.7.2)
38
+ activesupport (= 7.0.7.2)
39
39
  mail (~> 2.5, >= 2.5.4)
40
40
  net-imap
41
41
  net-pop
42
42
  net-smtp
43
43
  rails-dom-testing (~> 2.0)
44
- actionpack (7.0.6)
45
- actionview (= 7.0.6)
46
- activesupport (= 7.0.6)
44
+ actionpack (7.0.7.2)
45
+ actionview (= 7.0.7.2)
46
+ activesupport (= 7.0.7.2)
47
47
  rack (~> 2.0, >= 2.2.4)
48
48
  rack-test (>= 0.6.3)
49
49
  rails-dom-testing (~> 2.0)
50
50
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
51
- actiontext (7.0.6)
52
- actionpack (= 7.0.6)
53
- activerecord (= 7.0.6)
54
- activestorage (= 7.0.6)
55
- activesupport (= 7.0.6)
51
+ actiontext (7.0.7.2)
52
+ actionpack (= 7.0.7.2)
53
+ activerecord (= 7.0.7.2)
54
+ activestorage (= 7.0.7.2)
55
+ activesupport (= 7.0.7.2)
56
56
  globalid (>= 0.6.0)
57
57
  nokogiri (>= 1.8.5)
58
- actionview (7.0.6)
59
- activesupport (= 7.0.6)
58
+ actionview (7.0.7.2)
59
+ activesupport (= 7.0.7.2)
60
60
  builder (~> 3.1)
61
61
  erubi (~> 1.4)
62
62
  rails-dom-testing (~> 2.0)
63
63
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
64
- activejob (7.0.6)
65
- activesupport (= 7.0.6)
64
+ activejob (7.0.7.2)
65
+ activesupport (= 7.0.7.2)
66
66
  globalid (>= 0.3.6)
67
- activemodel (7.0.6)
68
- activesupport (= 7.0.6)
69
- activerecord (7.0.6)
70
- activemodel (= 7.0.6)
71
- activesupport (= 7.0.6)
72
- activestorage (7.0.6)
73
- actionpack (= 7.0.6)
74
- activejob (= 7.0.6)
75
- activerecord (= 7.0.6)
76
- activesupport (= 7.0.6)
67
+ activemodel (7.0.7.2)
68
+ activesupport (= 7.0.7.2)
69
+ activerecord (7.0.7.2)
70
+ activemodel (= 7.0.7.2)
71
+ activesupport (= 7.0.7.2)
72
+ activestorage (7.0.7.2)
73
+ actionpack (= 7.0.7.2)
74
+ activejob (= 7.0.7.2)
75
+ activerecord (= 7.0.7.2)
76
+ activesupport (= 7.0.7.2)
77
77
  marcel (~> 1.0)
78
78
  mini_mime (>= 1.1.0)
79
- activesupport (7.0.6)
79
+ activesupport (7.0.7.2)
80
80
  concurrent-ruby (~> 1.0, >= 1.0.2)
81
81
  i18n (>= 1.6, < 2)
82
82
  minitest (>= 5.1)
83
83
  tzinfo (~> 2.0)
84
84
  ast (2.4.2)
85
+ base64 (0.1.1)
86
+ bindex (0.8.1)
85
87
  builder (3.2.4)
86
88
  concurrent-ruby (1.2.2)
87
89
  crass (1.0.6)
@@ -104,9 +106,9 @@ GEM
104
106
  net-smtp
105
107
  marcel (1.0.2)
106
108
  method_source (1.0.0)
107
- mini_mime (1.1.2)
108
- minitest (5.18.1)
109
- net-imap (0.3.6)
109
+ mini_mime (1.1.5)
110
+ minitest (5.19.0)
111
+ net-imap (0.3.7)
110
112
  date
111
113
  net-protocol
112
114
  net-pop (0.1.2)
@@ -116,44 +118,44 @@ GEM
116
118
  net-smtp (0.3.3)
117
119
  net-protocol
118
120
  nio4r (2.5.9)
119
- nokogiri (1.15.3-x86_64-darwin)
121
+ nokogiri (1.15.4-x86_64-darwin)
120
122
  racc (~> 1.4)
121
- nokogiri (1.15.3-x86_64-linux)
123
+ nokogiri (1.15.4-x86_64-linux)
122
124
  racc (~> 1.4)
123
125
  parallel (1.23.0)
124
126
  parser (3.2.2.3)
125
127
  ast (~> 2.4.1)
126
128
  racc
127
- puma (6.3.0)
129
+ puma (6.3.1)
128
130
  nio4r (~> 2.0)
129
131
  racc (1.7.1)
130
- rack (2.2.7)
132
+ rack (2.2.8)
131
133
  rack-test (2.1.0)
132
134
  rack (>= 1.3)
133
- rails (7.0.6)
134
- actioncable (= 7.0.6)
135
- actionmailbox (= 7.0.6)
136
- actionmailer (= 7.0.6)
137
- actionpack (= 7.0.6)
138
- actiontext (= 7.0.6)
139
- actionview (= 7.0.6)
140
- activejob (= 7.0.6)
141
- activemodel (= 7.0.6)
142
- activerecord (= 7.0.6)
143
- activestorage (= 7.0.6)
144
- activesupport (= 7.0.6)
135
+ rails (7.0.7.2)
136
+ actioncable (= 7.0.7.2)
137
+ actionmailbox (= 7.0.7.2)
138
+ actionmailer (= 7.0.7.2)
139
+ actionpack (= 7.0.7.2)
140
+ actiontext (= 7.0.7.2)
141
+ actionview (= 7.0.7.2)
142
+ activejob (= 7.0.7.2)
143
+ activemodel (= 7.0.7.2)
144
+ activerecord (= 7.0.7.2)
145
+ activestorage (= 7.0.7.2)
146
+ activesupport (= 7.0.7.2)
145
147
  bundler (>= 1.15.0)
146
- railties (= 7.0.6)
147
- rails-dom-testing (2.1.1)
148
+ railties (= 7.0.7.2)
149
+ rails-dom-testing (2.2.0)
148
150
  activesupport (>= 5.0.0)
149
151
  minitest
150
152
  nokogiri (>= 1.6)
151
153
  rails-html-sanitizer (1.6.0)
152
154
  loofah (~> 2.21)
153
155
  nokogiri (~> 1.14)
154
- railties (7.0.6)
155
- actionpack (= 7.0.6)
156
- activesupport (= 7.0.6)
156
+ railties (7.0.7.2)
157
+ actionpack (= 7.0.7.2)
158
+ activesupport (= 7.0.7.2)
157
159
  method_source
158
160
  rake (>= 12.2)
159
161
  thor (~> 1.0)
@@ -161,46 +163,53 @@ GEM
161
163
  rainbow (3.1.1)
162
164
  rake (13.0.6)
163
165
  regexp_parser (2.8.1)
164
- rexml (3.2.5)
165
- rubocop (1.52.1)
166
+ rexml (3.2.6)
167
+ rubocop (1.56.1)
168
+ base64 (~> 0.1.1)
166
169
  json (~> 2.3)
170
+ language_server-protocol (>= 3.17.0)
167
171
  parallel (~> 1.10)
168
172
  parser (>= 3.2.2.3)
169
173
  rainbow (>= 2.2.2, < 4.0)
170
174
  regexp_parser (>= 1.8, < 3.0)
171
175
  rexml (>= 3.2.5, < 4.0)
172
- rubocop-ast (>= 1.28.0, < 2.0)
176
+ rubocop-ast (>= 1.28.1, < 2.0)
173
177
  ruby-progressbar (~> 1.7)
174
178
  unicode-display_width (>= 2.4.0, < 3.0)
175
179
  rubocop-ast (1.29.0)
176
180
  parser (>= 3.2.1.0)
177
- rubocop-performance (1.18.0)
181
+ rubocop-performance (1.19.0)
178
182
  rubocop (>= 1.7.0, < 2.0)
179
183
  rubocop-ast (>= 0.4.0)
180
184
  ruby-progressbar (1.13.0)
181
185
  sqlite3 (1.6.3-x86_64-darwin)
182
186
  sqlite3 (1.6.3-x86_64-linux)
183
- standard (1.30.1)
187
+ standard (1.31.0)
184
188
  language_server-protocol (~> 3.17.0.2)
185
189
  lint_roller (~> 1.0)
186
- rubocop (~> 1.52.0)
190
+ rubocop (~> 1.56.0)
187
191
  standard-custom (~> 1.0.0)
188
- standard-performance (~> 1.1.0)
192
+ standard-performance (~> 1.2)
189
193
  standard-custom (1.0.2)
190
194
  lint_roller (~> 1.0)
191
195
  rubocop (~> 1.50)
192
- standard-performance (1.1.1)
196
+ standard-performance (1.2.0)
193
197
  lint_roller (~> 1.1)
194
- rubocop-performance (~> 1.18.0)
198
+ rubocop-performance (~> 1.19.0)
195
199
  thor (1.2.2)
196
200
  timeout (0.4.0)
197
201
  tzinfo (2.0.6)
198
202
  concurrent-ruby (~> 1.0)
199
203
  unicode-display_width (2.4.2)
200
- websocket-driver (0.7.5)
204
+ web-console (4.2.0)
205
+ actionview (>= 6.0.0)
206
+ activemodel (>= 6.0.0)
207
+ bindex (>= 0.4.0)
208
+ railties (>= 6.0.0)
209
+ websocket-driver (0.7.6)
201
210
  websocket-extensions (>= 0.1.0)
202
211
  websocket-extensions (0.1.5)
203
- zeitwerk (2.6.8)
212
+ zeitwerk (2.6.11)
204
213
 
205
214
  PLATFORMS
206
215
  x86_64-darwin-20
@@ -213,6 +222,7 @@ DEPENDENCIES
213
222
  simple_calendar!
214
223
  sqlite3
215
224
  standard
225
+ web-console (~> 4.2)
216
226
 
217
227
  BUNDLED WITH
218
228
  2.4.16
data/README.md CHANGED
@@ -394,7 +394,7 @@ end
394
394
  To render this in the view, you can do:
395
395
 
396
396
  ```erb
397
- <%= SimpleCalendar::BusinessWeekCalendar.new(self, {}).render do |date| %>
397
+ <%= render SimpleCalendar::BusinessWeekCalendar.new(self, events: meetings) do |date| %>
398
398
  <%= date %>
399
399
  <% end %>
400
400
  ```
@@ -1,18 +1,18 @@
1
1
  module SimpleCalendar
2
- module ViewHelpers
2
+ module CalendarHelper
3
3
  def calendar(options = {}, &block)
4
4
  raise "calendar requires a block" unless block
5
- render SimpleCalendar::Calendar.new(self, options, &block)
5
+ render SimpleCalendar::Calendar.new(self, options), &block
6
6
  end
7
7
 
8
8
  def month_calendar(options = {}, &block)
9
9
  raise "month_calendar requires a block" unless block
10
- render SimpleCalendar::MonthCalendar.new(self, options, &block)
10
+ render SimpleCalendar::MonthCalendar.new(self, options), &block
11
11
  end
12
12
 
13
13
  def week_calendar(options = {}, &block)
14
14
  raise "week_calendar requires a block" unless block
15
- render SimpleCalendar::WeekCalendar.new(self, options, &block)
15
+ render SimpleCalendar::WeekCalendar.new(self, options), &block
16
16
  end
17
17
  end
18
18
  end
@@ -6,6 +6,7 @@ gem "appraisal", github: "thoughtbot/appraisal"
6
6
  gem "standard"
7
7
  gem "puma"
8
8
  gem "sqlite3"
9
+ gem "web-console", "~> 4.2", group: :development
9
10
  gem "rails", "~> 6.1.0"
10
11
 
11
12
  gemspec path: "../"
@@ -1,8 +1,8 @@
1
1
  GIT
2
2
  remote: https://github.com/thoughtbot/appraisal.git
3
- revision: b200e636903700098bef25f4f51dbc4c46e4c04c
3
+ revision: feb78bcc6177038399bff098cb6c2bd4bca4972a
4
4
  specs:
5
- appraisal (2.4.1)
5
+ appraisal (2.5.0)
6
6
  bundler
7
7
  rake
8
8
  thor (>= 0.14.0)
@@ -10,72 +10,74 @@ GIT
10
10
  PATH
11
11
  remote: ..
12
12
  specs:
13
- simple_calendar (3.0.0)
13
+ simple_calendar (3.0.2)
14
14
  rails (>= 6.1)
15
15
 
16
16
  GEM
17
17
  remote: http://rubygems.org/
18
18
  specs:
19
- actioncable (6.1.7.4)
20
- actionpack (= 6.1.7.4)
21
- activesupport (= 6.1.7.4)
19
+ actioncable (6.1.7.6)
20
+ actionpack (= 6.1.7.6)
21
+ activesupport (= 6.1.7.6)
22
22
  nio4r (~> 2.0)
23
23
  websocket-driver (>= 0.6.1)
24
- actionmailbox (6.1.7.4)
25
- actionpack (= 6.1.7.4)
26
- activejob (= 6.1.7.4)
27
- activerecord (= 6.1.7.4)
28
- activestorage (= 6.1.7.4)
29
- activesupport (= 6.1.7.4)
24
+ actionmailbox (6.1.7.6)
25
+ actionpack (= 6.1.7.6)
26
+ activejob (= 6.1.7.6)
27
+ activerecord (= 6.1.7.6)
28
+ activestorage (= 6.1.7.6)
29
+ activesupport (= 6.1.7.6)
30
30
  mail (>= 2.7.1)
31
- actionmailer (6.1.7.4)
32
- actionpack (= 6.1.7.4)
33
- actionview (= 6.1.7.4)
34
- activejob (= 6.1.7.4)
35
- activesupport (= 6.1.7.4)
31
+ actionmailer (6.1.7.6)
32
+ actionpack (= 6.1.7.6)
33
+ actionview (= 6.1.7.6)
34
+ activejob (= 6.1.7.6)
35
+ activesupport (= 6.1.7.6)
36
36
  mail (~> 2.5, >= 2.5.4)
37
37
  rails-dom-testing (~> 2.0)
38
- actionpack (6.1.7.4)
39
- actionview (= 6.1.7.4)
40
- activesupport (= 6.1.7.4)
38
+ actionpack (6.1.7.6)
39
+ actionview (= 6.1.7.6)
40
+ activesupport (= 6.1.7.6)
41
41
  rack (~> 2.0, >= 2.0.9)
42
42
  rack-test (>= 0.6.3)
43
43
  rails-dom-testing (~> 2.0)
44
44
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
45
- actiontext (6.1.7.4)
46
- actionpack (= 6.1.7.4)
47
- activerecord (= 6.1.7.4)
48
- activestorage (= 6.1.7.4)
49
- activesupport (= 6.1.7.4)
45
+ actiontext (6.1.7.6)
46
+ actionpack (= 6.1.7.6)
47
+ activerecord (= 6.1.7.6)
48
+ activestorage (= 6.1.7.6)
49
+ activesupport (= 6.1.7.6)
50
50
  nokogiri (>= 1.8.5)
51
- actionview (6.1.7.4)
52
- activesupport (= 6.1.7.4)
51
+ actionview (6.1.7.6)
52
+ activesupport (= 6.1.7.6)
53
53
  builder (~> 3.1)
54
54
  erubi (~> 1.4)
55
55
  rails-dom-testing (~> 2.0)
56
56
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
57
- activejob (6.1.7.4)
58
- activesupport (= 6.1.7.4)
57
+ activejob (6.1.7.6)
58
+ activesupport (= 6.1.7.6)
59
59
  globalid (>= 0.3.6)
60
- activemodel (6.1.7.4)
61
- activesupport (= 6.1.7.4)
62
- activerecord (6.1.7.4)
63
- activemodel (= 6.1.7.4)
64
- activesupport (= 6.1.7.4)
65
- activestorage (6.1.7.4)
66
- actionpack (= 6.1.7.4)
67
- activejob (= 6.1.7.4)
68
- activerecord (= 6.1.7.4)
69
- activesupport (= 6.1.7.4)
60
+ activemodel (6.1.7.6)
61
+ activesupport (= 6.1.7.6)
62
+ activerecord (6.1.7.6)
63
+ activemodel (= 6.1.7.6)
64
+ activesupport (= 6.1.7.6)
65
+ activestorage (6.1.7.6)
66
+ actionpack (= 6.1.7.6)
67
+ activejob (= 6.1.7.6)
68
+ activerecord (= 6.1.7.6)
69
+ activesupport (= 6.1.7.6)
70
70
  marcel (~> 1.0)
71
71
  mini_mime (>= 1.1.0)
72
- activesupport (6.1.7.4)
72
+ activesupport (6.1.7.6)
73
73
  concurrent-ruby (~> 1.0, >= 1.0.2)
74
74
  i18n (>= 1.6, < 2)
75
75
  minitest (>= 5.1)
76
76
  tzinfo (~> 2.0)
77
77
  zeitwerk (~> 2.3)
78
78
  ast (2.4.2)
79
+ base64 (0.1.1)
80
+ bindex (0.8.1)
79
81
  builder (3.2.4)
80
82
  concurrent-ruby (1.2.2)
81
83
  crass (1.0.6)
@@ -98,10 +100,10 @@ GEM
98
100
  net-smtp
99
101
  marcel (1.0.2)
100
102
  method_source (1.0.0)
101
- mini_mime (1.1.2)
102
- mini_portile2 (2.8.2)
103
- minitest (5.18.1)
104
- net-imap (0.3.6)
103
+ mini_mime (1.1.5)
104
+ mini_portile2 (2.8.4)
105
+ minitest (5.19.0)
106
+ net-imap (0.3.7)
105
107
  date
106
108
  net-protocol
107
109
  net-pop (0.1.2)
@@ -111,68 +113,70 @@ GEM
111
113
  net-smtp (0.3.3)
112
114
  net-protocol
113
115
  nio4r (2.5.9)
114
- nokogiri (1.15.3)
116
+ nokogiri (1.15.4)
115
117
  mini_portile2 (~> 2.8.2)
116
118
  racc (~> 1.4)
117
- nokogiri (1.15.3-x86_64-darwin)
119
+ nokogiri (1.15.4-x86_64-darwin)
118
120
  racc (~> 1.4)
119
- nokogiri (1.15.3-x86_64-linux)
121
+ nokogiri (1.15.4-x86_64-linux)
120
122
  racc (~> 1.4)
121
123
  parallel (1.23.0)
122
124
  parser (3.2.2.3)
123
125
  ast (~> 2.4.1)
124
126
  racc
125
- puma (6.3.0)
127
+ puma (6.3.1)
126
128
  nio4r (~> 2.0)
127
129
  racc (1.7.1)
128
- rack (2.2.7)
130
+ rack (2.2.8)
129
131
  rack-test (2.1.0)
130
132
  rack (>= 1.3)
131
- rails (6.1.7.4)
132
- actioncable (= 6.1.7.4)
133
- actionmailbox (= 6.1.7.4)
134
- actionmailer (= 6.1.7.4)
135
- actionpack (= 6.1.7.4)
136
- actiontext (= 6.1.7.4)
137
- actionview (= 6.1.7.4)
138
- activejob (= 6.1.7.4)
139
- activemodel (= 6.1.7.4)
140
- activerecord (= 6.1.7.4)
141
- activestorage (= 6.1.7.4)
142
- activesupport (= 6.1.7.4)
133
+ rails (6.1.7.6)
134
+ actioncable (= 6.1.7.6)
135
+ actionmailbox (= 6.1.7.6)
136
+ actionmailer (= 6.1.7.6)
137
+ actionpack (= 6.1.7.6)
138
+ actiontext (= 6.1.7.6)
139
+ actionview (= 6.1.7.6)
140
+ activejob (= 6.1.7.6)
141
+ activemodel (= 6.1.7.6)
142
+ activerecord (= 6.1.7.6)
143
+ activestorage (= 6.1.7.6)
144
+ activesupport (= 6.1.7.6)
143
145
  bundler (>= 1.15.0)
144
- railties (= 6.1.7.4)
146
+ railties (= 6.1.7.6)
145
147
  sprockets-rails (>= 2.0.0)
146
- rails-dom-testing (2.1.1)
148
+ rails-dom-testing (2.2.0)
147
149
  activesupport (>= 5.0.0)
148
150
  minitest
149
151
  nokogiri (>= 1.6)
150
152
  rails-html-sanitizer (1.6.0)
151
153
  loofah (~> 2.21)
152
154
  nokogiri (~> 1.14)
153
- railties (6.1.7.4)
154
- actionpack (= 6.1.7.4)
155
- activesupport (= 6.1.7.4)
155
+ railties (6.1.7.6)
156
+ actionpack (= 6.1.7.6)
157
+ activesupport (= 6.1.7.6)
156
158
  method_source
157
159
  rake (>= 12.2)
158
160
  thor (~> 1.0)
159
161
  rainbow (3.1.1)
160
162
  rake (13.0.6)
161
163
  regexp_parser (2.8.1)
162
- rexml (3.2.5)
163
- rubocop (1.52.1)
164
+ rexml (3.2.6)
165
+ rubocop (1.56.1)
166
+ base64 (~> 0.1.1)
164
167
  json (~> 2.3)
168
+ language_server-protocol (>= 3.17.0)
165
169
  parallel (~> 1.10)
166
170
  parser (>= 3.2.2.3)
167
171
  rainbow (>= 2.2.2, < 4.0)
168
172
  regexp_parser (>= 1.8, < 3.0)
169
173
  rexml (>= 3.2.5, < 4.0)
170
- rubocop-ast (>= 1.28.0, < 2.0)
174
+ rubocop-ast (>= 1.28.1, < 2.0)
171
175
  ruby-progressbar (~> 1.7)
172
176
  unicode-display_width (>= 2.4.0, < 3.0)
173
177
  rubocop-ast (1.29.0)
174
178
  parser (>= 3.2.1.0)
175
- rubocop-performance (1.18.0)
179
+ rubocop-performance (1.19.0)
176
180
  rubocop (>= 1.7.0, < 2.0)
177
181
  rubocop-ast (>= 0.4.0)
178
182
  ruby-progressbar (1.13.0)
@@ -187,27 +191,32 @@ GEM
187
191
  mini_portile2 (~> 2.8.0)
188
192
  sqlite3 (1.6.3-x86_64-darwin)
189
193
  sqlite3 (1.6.3-x86_64-linux)
190
- standard (1.30.1)
194
+ standard (1.31.0)
191
195
  language_server-protocol (~> 3.17.0.2)
192
196
  lint_roller (~> 1.0)
193
- rubocop (~> 1.52.0)
197
+ rubocop (~> 1.56.0)
194
198
  standard-custom (~> 1.0.0)
195
- standard-performance (~> 1.1.0)
199
+ standard-performance (~> 1.2)
196
200
  standard-custom (1.0.2)
197
201
  lint_roller (~> 1.0)
198
202
  rubocop (~> 1.50)
199
- standard-performance (1.1.1)
203
+ standard-performance (1.2.0)
200
204
  lint_roller (~> 1.1)
201
- rubocop-performance (~> 1.18.0)
205
+ rubocop-performance (~> 1.19.0)
202
206
  thor (1.2.2)
203
207
  timeout (0.4.0)
204
208
  tzinfo (2.0.6)
205
209
  concurrent-ruby (~> 1.0)
206
210
  unicode-display_width (2.4.2)
207
- websocket-driver (0.7.5)
211
+ web-console (4.2.0)
212
+ actionview (>= 6.0.0)
213
+ activemodel (>= 6.0.0)
214
+ bindex (>= 0.4.0)
215
+ railties (>= 6.0.0)
216
+ websocket-driver (0.7.6)
208
217
  websocket-extensions (>= 0.1.0)
209
218
  websocket-extensions (0.1.5)
210
- zeitwerk (2.6.8)
219
+ zeitwerk (2.6.11)
211
220
 
212
221
  PLATFORMS
213
222
  ruby
@@ -221,6 +230,7 @@ DEPENDENCIES
221
230
  simple_calendar!
222
231
  sqlite3
223
232
  standard
233
+ web-console (~> 4.2)
224
234
 
225
235
  BUNDLED WITH
226
236
  2.4.16
@@ -6,6 +6,7 @@ gem "appraisal", github: "thoughtbot/appraisal"
6
6
  gem "standard"
7
7
  gem "puma"
8
8
  gem "sqlite3"
9
+ gem "web-console", "~> 4.2", group: :development
9
10
  gem "rails", "~> 7.0.0"
10
11
 
11
12
  gemspec path: "../"