shimmer 0.0.28 → 0.0.30

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c29fbc043f70767d14167a6da3f50d85790e85f3244628c207c41412a9d0db65
4
- data.tar.gz: 8b33c52bf110c85c72427fe5dd320bbb26ff782aecba81f4aae17fe3f1eb81f3
3
+ metadata.gz: 4daaaa818a13c67e102993a851ca62bde262fb8e29ee6b5edfa356344e2708ef
4
+ data.tar.gz: 849d1c53c92617e5186070f62915888b0b6575ba165c3a747a0546e773da7334
5
5
  SHA512:
6
- metadata.gz: 8c9bbb1b1ef81986d70a3101ec86ed3222c015ab2466d585bc5ebcc83cc0c80adfdc57e4ac223a01ae96fa2ab5be0aedebf60efeffba32507fd44402779e4f34
7
- data.tar.gz: 0b8e06125388ce26ae9e88adfdd3616828180a46332f584d4a631630a68c69fff6cd59f0242c8d9db69ed3c0a72ab77abdee84655785ae7f8f0a861e96513814
6
+ metadata.gz: 990b5dfc75f22a79620a2ea0644c5e87c34486911c3b8ee5def8939aafe84a4c2522dfedff24ac4f4e697fbeca5e6a39a4b43ee0a720990a53a287b972c7bca0
7
+ data.tar.gz: 81581da7c7c5a952546771ff6fbecf3b4a0a203db0ffd8c02d4492dca2a1061d46e1a78acb66ab6daf9370e9998e90d6cd1b75a360855d6185d40cf2fb469e05
data/.babelrc ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "presets": [
3
+ "@babel/preset-env",
4
+ "@babel/preset-react",
5
+ "@babel/preset-flow"
6
+ ],
7
+ "plugins": [
8
+ "@babel/plugin-proposal-class-properties",
9
+ "babel-plugin-inline-json-import",
10
+ ["@babel/plugin-transform-runtime", {
11
+ "regenerator": true
12
+ }]
13
+ ]
14
+ }
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.rubocop.yml CHANGED
@@ -1,5 +1,12 @@
1
1
  inherit_from: config/rubocop_base.yml
2
2
 
3
+ AllCops:
4
+ Exclude:
5
+ - "bin/**/*"
6
+ - "spec/rails_app/bin/**/*"
7
+ - "spec/rails_app/db/schema.rb"
8
+ - "vendor/**/*"
9
+
3
10
  # Allow controllers created in this library to inherit directly from ActionController::Base.
4
11
  Rails/ApplicationController:
5
12
  Enabled: false
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.3
1
+ 2.7.7
@@ -1,9 +1,12 @@
1
1
  {
2
- "solargraph.useBundler": false,
3
- "solargraph.formatting": true,
4
2
  "[ruby]": {
5
3
  "editor.formatOnSave": false,
6
- "editor.defaultFormatter": "castwide.solargraph"
4
+ "editor.defaultFormatter": "rebornix.ruby"
7
5
  },
8
- "typescript.tsdk": "node_modules/typescript/lib"
6
+ "ruby.format": "rubocop",
7
+ "ruby.lint": {
8
+ "rubocop": true
9
+ },
10
+ "ruby.useLanguageServer": true,
11
+ "typescript.tsdk": "node_modules/typescript/lib",
9
12
  }
data/Gemfile CHANGED
@@ -4,3 +4,45 @@ source "https://rubygems.org"
4
4
 
5
5
  # Specify your gem's dependencies in shimmer.gemspec
6
6
  gemspec
7
+
8
+ gem "rails"
9
+ gem "propshaft"
10
+ gem "sqlite3"
11
+ gem "puma"
12
+ gem "jsbundling-rails"
13
+ gem "turbo-rails"
14
+ gem "stimulus-rails"
15
+ gem "cssbundling-rails"
16
+ gem "jbuilder"
17
+ gem "bootsnap", require: false
18
+ gem "dotenv"
19
+ gem "slim-rails"
20
+ gem "awesome_print"
21
+ gem "dotenv-rails"
22
+
23
+ group :development, :test do
24
+ gem "debug", platforms: [:mri, :mingw, :x64_mingw]
25
+ gem "rake"
26
+ gem "rspec-rails"
27
+ gem "rspec-retry"
28
+ gem "pry"
29
+ gem "pry-rails"
30
+ gem "pry-byebug"
31
+ gem "pry-doc"
32
+ gem "guard"
33
+ gem "guard-rspec"
34
+ gem "capybara"
35
+ gem "rack_session_access"
36
+ gem "cuprite"
37
+ gem "standard"
38
+ gem "rubocop"
39
+ gem "rubocop-rails"
40
+ gem "rubocop-performance"
41
+ gem "rubocop-rspec"
42
+ gem "rubocop-rake"
43
+ end
44
+
45
+ group :development do
46
+ gem "web-console"
47
+ gem "annotate"
48
+ end
data/Gemfile.lock CHANGED
@@ -6,69 +6,381 @@ PATH
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- activesupport (7.0.2.3)
9
+ actioncable (7.0.4.2)
10
+ actionpack (= 7.0.4.2)
11
+ activesupport (= 7.0.4.2)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (>= 0.6.1)
14
+ actionmailbox (7.0.4.2)
15
+ actionpack (= 7.0.4.2)
16
+ activejob (= 7.0.4.2)
17
+ activerecord (= 7.0.4.2)
18
+ activestorage (= 7.0.4.2)
19
+ activesupport (= 7.0.4.2)
20
+ mail (>= 2.7.1)
21
+ net-imap
22
+ net-pop
23
+ net-smtp
24
+ actionmailer (7.0.4.2)
25
+ actionpack (= 7.0.4.2)
26
+ actionview (= 7.0.4.2)
27
+ activejob (= 7.0.4.2)
28
+ activesupport (= 7.0.4.2)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ net-imap
31
+ net-pop
32
+ net-smtp
33
+ rails-dom-testing (~> 2.0)
34
+ actionpack (7.0.4.2)
35
+ actionview (= 7.0.4.2)
36
+ activesupport (= 7.0.4.2)
37
+ rack (~> 2.0, >= 2.2.0)
38
+ rack-test (>= 0.6.3)
39
+ rails-dom-testing (~> 2.0)
40
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
41
+ actiontext (7.0.4.2)
42
+ actionpack (= 7.0.4.2)
43
+ activerecord (= 7.0.4.2)
44
+ activestorage (= 7.0.4.2)
45
+ activesupport (= 7.0.4.2)
46
+ globalid (>= 0.6.0)
47
+ nokogiri (>= 1.8.5)
48
+ actionview (7.0.4.2)
49
+ activesupport (= 7.0.4.2)
50
+ builder (~> 3.1)
51
+ erubi (~> 1.4)
52
+ rails-dom-testing (~> 2.0)
53
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
+ activejob (7.0.4.2)
55
+ activesupport (= 7.0.4.2)
56
+ globalid (>= 0.3.6)
57
+ activemodel (7.0.4.2)
58
+ activesupport (= 7.0.4.2)
59
+ activerecord (7.0.4.2)
60
+ activemodel (= 7.0.4.2)
61
+ activesupport (= 7.0.4.2)
62
+ activestorage (7.0.4.2)
63
+ actionpack (= 7.0.4.2)
64
+ activejob (= 7.0.4.2)
65
+ activerecord (= 7.0.4.2)
66
+ activesupport (= 7.0.4.2)
67
+ marcel (~> 1.0)
68
+ mini_mime (>= 1.1.0)
69
+ activesupport (7.0.4.2)
10
70
  concurrent-ruby (~> 1.0, >= 1.0.2)
11
71
  i18n (>= 1.6, < 2)
12
72
  minitest (>= 5.1)
13
73
  tzinfo (~> 2.0)
74
+ addressable (2.8.1)
75
+ public_suffix (>= 2.0.2, < 6.0)
76
+ annotate (3.2.0)
77
+ activerecord (>= 3.2, < 8.0)
78
+ rake (>= 10.4, < 14.0)
14
79
  ast (2.4.2)
15
- concurrent-ruby (1.1.10)
16
- i18n (1.10.0)
80
+ awesome_print (1.9.2)
81
+ bindex (0.8.1)
82
+ bootsnap (1.16.0)
83
+ msgpack (~> 1.2)
84
+ builder (3.2.4)
85
+ byebug (11.1.3)
86
+ capybara (3.38.0)
87
+ addressable
88
+ matrix
89
+ mini_mime (>= 0.1.3)
90
+ nokogiri (~> 1.8)
91
+ rack (>= 1.6.0)
92
+ rack-test (>= 0.6.3)
93
+ regexp_parser (>= 1.5, < 3.0)
94
+ xpath (~> 3.2)
95
+ coderay (1.1.3)
96
+ concurrent-ruby (1.2.0)
97
+ crass (1.0.6)
98
+ cssbundling-rails (1.1.2)
99
+ railties (>= 6.0.0)
100
+ cuprite (0.14.3)
101
+ capybara (~> 3.0)
102
+ ferrum (~> 0.13.0)
103
+ date (3.3.3)
104
+ debug (1.7.1)
105
+ irb (>= 1.5.0)
106
+ reline (>= 0.3.1)
107
+ diff-lcs (1.5.0)
108
+ dotenv (2.8.1)
109
+ dotenv-rails (2.8.1)
110
+ dotenv (= 2.8.1)
111
+ railties (>= 3.2)
112
+ erubi (1.12.0)
113
+ ferrum (0.13)
114
+ addressable (~> 2.5)
115
+ concurrent-ruby (~> 1.1)
116
+ webrick (~> 1.7)
117
+ websocket-driver (>= 0.6, < 0.8)
118
+ ffi (1.15.5)
119
+ formatador (1.1.0)
120
+ globalid (1.1.0)
121
+ activesupport (>= 5.0)
122
+ guard (2.18.0)
123
+ formatador (>= 0.2.4)
124
+ listen (>= 2.7, < 4.0)
125
+ lumberjack (>= 1.0.12, < 2.0)
126
+ nenv (~> 0.1)
127
+ notiffany (~> 0.0)
128
+ pry (>= 0.13.0)
129
+ shellany (~> 0.0)
130
+ thor (>= 0.18.1)
131
+ guard-compat (1.2.1)
132
+ guard-rspec (4.7.3)
133
+ guard (~> 2.1)
134
+ guard-compat (~> 1.1)
135
+ rspec (>= 2.99.0, < 4.0)
136
+ i18n (1.12.0)
17
137
  concurrent-ruby (~> 1.0)
18
- minitest (5.15.0)
19
- parallel (1.21.0)
20
- parser (3.0.3.2)
138
+ io-console (0.6.0)
139
+ irb (1.6.2)
140
+ reline (>= 0.3.0)
141
+ jbuilder (2.11.5)
142
+ actionview (>= 5.0.0)
143
+ activesupport (>= 5.0.0)
144
+ jsbundling-rails (1.1.1)
145
+ railties (>= 6.0.0)
146
+ json (2.6.3)
147
+ language_server-protocol (3.17.0.3)
148
+ lint_roller (1.0.0)
149
+ listen (3.8.0)
150
+ rb-fsevent (~> 0.10, >= 0.10.3)
151
+ rb-inotify (~> 0.9, >= 0.9.10)
152
+ loofah (2.19.1)
153
+ crass (~> 1.0.2)
154
+ nokogiri (>= 1.5.9)
155
+ lumberjack (1.2.8)
156
+ mail (2.8.1)
157
+ mini_mime (>= 0.1.1)
158
+ net-imap
159
+ net-pop
160
+ net-smtp
161
+ marcel (1.0.2)
162
+ matrix (0.4.2)
163
+ method_source (1.0.0)
164
+ mini_mime (1.1.2)
165
+ minitest (5.17.0)
166
+ msgpack (1.6.0)
167
+ nenv (0.3.0)
168
+ net-imap (0.3.4)
169
+ date
170
+ net-protocol
171
+ net-pop (0.1.2)
172
+ net-protocol
173
+ net-protocol (0.2.1)
174
+ timeout
175
+ net-smtp (0.3.3)
176
+ net-protocol
177
+ nio4r (2.5.8)
178
+ nokogiri (1.14.1-x86_64-darwin)
179
+ racc (~> 1.4)
180
+ notiffany (0.1.3)
181
+ nenv (~> 0.1)
182
+ shellany (~> 0.0)
183
+ parallel (1.23.0)
184
+ parser (3.2.2.1)
21
185
  ast (~> 2.4.1)
22
- rack (2.2.3)
23
- rainbow (3.0.0)
186
+ propshaft (0.6.4)
187
+ actionpack (>= 7.0.0)
188
+ activesupport (>= 7.0.0)
189
+ rack
190
+ railties (>= 7.0.0)
191
+ pry (0.14.2)
192
+ coderay (~> 1.1)
193
+ method_source (~> 1.0)
194
+ pry-byebug (3.10.1)
195
+ byebug (~> 11.0)
196
+ pry (>= 0.13, < 0.15)
197
+ pry-doc (1.4.0)
198
+ pry (~> 0.11)
199
+ yard (~> 0.9.11)
200
+ pry-rails (0.3.9)
201
+ pry (>= 0.10.4)
202
+ public_suffix (5.0.1)
203
+ puma (6.0.2)
204
+ nio4r (~> 2.0)
205
+ racc (1.6.2)
206
+ rack (2.2.6.2)
207
+ rack-test (2.0.2)
208
+ rack (>= 1.3)
209
+ rack_session_access (0.2.0)
210
+ builder (>= 2.0.0)
211
+ rack (>= 1.0.0)
212
+ rails (7.0.4.2)
213
+ actioncable (= 7.0.4.2)
214
+ actionmailbox (= 7.0.4.2)
215
+ actionmailer (= 7.0.4.2)
216
+ actionpack (= 7.0.4.2)
217
+ actiontext (= 7.0.4.2)
218
+ actionview (= 7.0.4.2)
219
+ activejob (= 7.0.4.2)
220
+ activemodel (= 7.0.4.2)
221
+ activerecord (= 7.0.4.2)
222
+ activestorage (= 7.0.4.2)
223
+ activesupport (= 7.0.4.2)
224
+ bundler (>= 1.15.0)
225
+ railties (= 7.0.4.2)
226
+ rails-dom-testing (2.0.3)
227
+ activesupport (>= 4.2.0)
228
+ nokogiri (>= 1.6)
229
+ rails-html-sanitizer (1.5.0)
230
+ loofah (~> 2.19, >= 2.19.1)
231
+ railties (7.0.4.2)
232
+ actionpack (= 7.0.4.2)
233
+ activesupport (= 7.0.4.2)
234
+ method_source
235
+ rake (>= 12.2)
236
+ thor (~> 1.0)
237
+ zeitwerk (~> 2.5)
238
+ rainbow (3.1.1)
24
239
  rake (13.0.6)
25
- regexp_parser (2.2.0)
240
+ rb-fsevent (0.11.2)
241
+ rb-inotify (0.10.1)
242
+ ffi (~> 1.0)
243
+ regexp_parser (2.8.0)
244
+ reline (0.3.2)
245
+ io-console (~> 0.5)
26
246
  rexml (3.2.5)
27
- rubocop (1.23.0)
247
+ rspec (3.12.0)
248
+ rspec-core (~> 3.12.0)
249
+ rspec-expectations (~> 3.12.0)
250
+ rspec-mocks (~> 3.12.0)
251
+ rspec-core (3.12.1)
252
+ rspec-support (~> 3.12.0)
253
+ rspec-expectations (3.12.2)
254
+ diff-lcs (>= 1.2.0, < 2.0)
255
+ rspec-support (~> 3.12.0)
256
+ rspec-mocks (3.12.3)
257
+ diff-lcs (>= 1.2.0, < 2.0)
258
+ rspec-support (~> 3.12.0)
259
+ rspec-rails (6.0.1)
260
+ actionpack (>= 6.1)
261
+ activesupport (>= 6.1)
262
+ railties (>= 6.1)
263
+ rspec-core (~> 3.11)
264
+ rspec-expectations (~> 3.11)
265
+ rspec-mocks (~> 3.11)
266
+ rspec-support (~> 3.11)
267
+ rspec-retry (0.6.2)
268
+ rspec-core (> 3.3)
269
+ rspec-support (3.12.0)
270
+ rubocop (1.50.2)
271
+ json (~> 2.3)
28
272
  parallel (~> 1.10)
29
- parser (>= 3.0.0.0)
273
+ parser (>= 3.2.0.0)
30
274
  rainbow (>= 2.2.2, < 4.0)
31
275
  regexp_parser (>= 1.8, < 3.0)
32
- rexml
33
- rubocop-ast (>= 1.12.0, < 2.0)
276
+ rexml (>= 3.2.5, < 4.0)
277
+ rubocop-ast (>= 1.28.0, < 2.0)
34
278
  ruby-progressbar (~> 1.7)
35
- unicode-display_width (>= 1.4.0, < 3.0)
36
- rubocop-ast (1.15.0)
37
- parser (>= 3.0.1.1)
38
- rubocop-performance (1.12.0)
279
+ unicode-display_width (>= 2.4.0, < 3.0)
280
+ rubocop-ast (1.28.0)
281
+ parser (>= 3.2.1.0)
282
+ rubocop-capybara (2.18.0)
283
+ rubocop (~> 1.41)
284
+ rubocop-performance (1.16.0)
39
285
  rubocop (>= 1.7.0, < 2.0)
40
286
  rubocop-ast (>= 0.4.0)
41
- rubocop-rails (2.14.2)
287
+ rubocop-rails (2.17.4)
42
288
  activesupport (>= 4.2.0)
43
289
  rack (>= 1.1)
44
- rubocop (>= 1.7.0, < 2.0)
290
+ rubocop (>= 1.33.0, < 2.0)
45
291
  rubocop-rake (0.6.0)
46
292
  rubocop (~> 1.0)
47
- rubocop-rspec (2.9.0)
48
- rubocop (~> 1.19)
49
- ruby-progressbar (1.11.0)
50
- standard (1.5.0)
51
- rubocop (= 1.23.0)
52
- rubocop-performance (= 1.12.0)
53
- standardrb (1.0.1)
54
- standard
55
- tzinfo (2.0.4)
293
+ rubocop-rspec (2.20.0)
294
+ rubocop (~> 1.33)
295
+ rubocop-capybara (~> 2.17)
296
+ ruby-progressbar (1.13.0)
297
+ shellany (0.0.1)
298
+ slim (4.1.0)
299
+ temple (>= 0.7.6, < 0.9)
300
+ tilt (>= 2.0.6, < 2.1)
301
+ slim-rails (3.5.1)
302
+ actionpack (>= 3.1)
303
+ railties (>= 3.1)
304
+ slim (>= 3.0, < 5.0)
305
+ sqlite3 (1.6.0-x86_64-darwin)
306
+ standard (1.28.0)
307
+ language_server-protocol (~> 3.17.0.2)
308
+ lint_roller (~> 1.0)
309
+ rubocop (~> 1.50.2)
310
+ standard-custom (~> 1.0.0)
311
+ standard-performance (~> 1.0.1)
312
+ standard-custom (1.0.0)
313
+ lint_roller (~> 1.0)
314
+ standard-performance (1.0.1)
315
+ lint_roller (~> 1.0)
316
+ rubocop-performance (~> 1.16.0)
317
+ stimulus-rails (1.2.1)
318
+ railties (>= 6.0.0)
319
+ temple (0.8.2)
320
+ thor (1.2.1)
321
+ tilt (2.0.11)
322
+ timeout (0.3.1)
323
+ turbo-rails (1.3.3)
324
+ actionpack (>= 6.0.0)
325
+ activejob (>= 6.0.0)
326
+ railties (>= 6.0.0)
327
+ tzinfo (2.0.6)
56
328
  concurrent-ruby (~> 1.0)
57
- unicode-display_width (2.1.0)
329
+ unicode-display_width (2.4.2)
330
+ web-console (4.2.0)
331
+ actionview (>= 6.0.0)
332
+ activemodel (>= 6.0.0)
333
+ bindex (>= 0.4.0)
334
+ railties (>= 6.0.0)
335
+ webrick (1.8.1)
336
+ websocket-driver (0.7.5)
337
+ websocket-extensions (>= 0.1.0)
338
+ websocket-extensions (0.1.5)
339
+ xpath (3.2.0)
340
+ nokogiri (~> 1.8)
341
+ yard (0.9.26)
342
+ zeitwerk (2.6.6)
58
343
 
59
344
  PLATFORMS
60
- x86_64-darwin-21
61
- x86_64-linux
345
+ x86_64-darwin-22
62
346
 
63
347
  DEPENDENCIES
64
- rake (~> 13.0)
348
+ annotate
349
+ awesome_print
350
+ bootsnap
351
+ capybara
352
+ cssbundling-rails
353
+ cuprite
354
+ debug
355
+ dotenv
356
+ dotenv-rails
357
+ guard
358
+ guard-rspec
359
+ jbuilder
360
+ jsbundling-rails
361
+ propshaft
362
+ pry
363
+ pry-byebug
364
+ pry-doc
365
+ pry-rails
366
+ puma
367
+ rack_session_access
368
+ rails
369
+ rake
370
+ rspec-rails
371
+ rspec-retry
65
372
  rubocop
66
373
  rubocop-performance
67
374
  rubocop-rails
68
375
  rubocop-rake
69
376
  rubocop-rspec
70
377
  shimmer!
71
- standardrb
378
+ slim-rails
379
+ sqlite3
380
+ standard
381
+ stimulus-rails
382
+ turbo-rails
383
+ web-console
72
384
 
73
385
  BUNDLED WITH
74
- 2.2.32
386
+ 2.3.26
data/Guardfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ clearing :on
4
+
5
+ guard :rspec, cmd: "bin/rspec" do
6
+ require "guard/rspec/dsl"
7
+ dsl = Guard::RSpec::Dsl.new(self)
8
+
9
+ # RSpec files
10
+ rspec = dsl.rspec
11
+ watch(rspec.spec_files)
12
+ end