turbo_reflex 0.0.1 → 0.0.2
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/CODE_OF_CONDUCT.md +128 -0
- data/Gemfile +2 -5
- data/Gemfile.lock +128 -101
- data/README.md +469 -14
- data/Rakefile +15 -1
- data/app/assets/builds/turbo_reflex.min.js +2 -0
- data/app/assets/builds/turbo_reflex.min.js.map +7 -0
- data/app/assets/images/turbo-reflex-logo-dark.webp +0 -0
- data/app/assets/images/turbo-reflex-logo-light.webp +0 -0
- data/app/assets/images/turbo-reflex-mark.webp +0 -0
- data/app/controllers/concerns/turbo_reflex/controller.rb +132 -0
- data/app/javascript/elements.js +87 -0
- data/app/javascript/event_registry.js +34 -0
- data/app/javascript/frame_sources.js +28 -0
- data/app/javascript/lifecycle_events.js +24 -0
- data/app/javascript/security.js +7 -0
- data/app/javascript/turbo_reflex.js +111 -0
- data/bin/loc +1 -1
- data/lib/turbo_reflex/base.rb +32 -0
- data/lib/turbo_reflex/engine.rb +9 -0
- data/lib/turbo_reflex/sanitizer.rb +20 -0
- data/lib/turbo_reflex/version.rb +3 -1
- data/lib/turbo_reflex.rb +2 -5
- data/package.json +4 -4
- data/turbo_reflex.gemspec +30 -19
- data/yarn.lock +167 -157
- metadata +177 -10
- data/app/assets/builds/turbo_reflex.js +0 -1
- data/app/assets/builds/turbo_reflex.js.map +0 -7
- data/lib/turbo_reflex/railtie.rb +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b69b530a4e88be7ec81b38f0076f6d8181eb4a8e209bb2ecf8d443bbd4ab3b2f
|
4
|
+
data.tar.gz: d71d737c155f19c32170280ccb8bf25c9dc55c4e60698f7f19fbeff19ee80225
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48a856e206b2cbbb1692829c0157e6c5429f5cef111f64e44ccdff91247cee773b4c91e12219e2df1bccb6fde44eaed6817c3ac1a55beaf64144b303acf26bdf
|
7
|
+
data.tar.gz: b11f7bc4ffe62ea4dc9fd0f79bc1952bf1316973a3e109c0e40aca4e56ee9efc81d5f857f18e2c84fe0e9e7cfdaec519231145d4b65637fbaf92809be13386f6
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity
|
10
|
+
and orientation.
|
11
|
+
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
+
diverse, inclusive, and healthy community.
|
14
|
+
|
15
|
+
## Our Standards
|
16
|
+
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
18
|
+
community include:
|
19
|
+
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
+
and learning from the experience
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the
|
26
|
+
overall community
|
27
|
+
|
28
|
+
Examples of unacceptable behavior include:
|
29
|
+
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or
|
31
|
+
advances of any kind
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
|
+
* Public or private harassment
|
34
|
+
* Publishing others' private information, such as a physical or email
|
35
|
+
address, without their explicit permission
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
37
|
+
professional setting
|
38
|
+
|
39
|
+
## Enforcement Responsibilities
|
40
|
+
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
44
|
+
or harmful.
|
45
|
+
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
49
|
+
decisions when appropriate.
|
50
|
+
|
51
|
+
## Scope
|
52
|
+
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
54
|
+
an individual is officially representing the community in public spaces.
|
55
|
+
Examples of representing our community include using an official e-mail address,
|
56
|
+
posting via an official social media account, or acting as an appointed
|
57
|
+
representative at an online or offline event.
|
58
|
+
|
59
|
+
## Enforcement
|
60
|
+
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62
|
+
reported to the community leaders responsible for enforcement at
|
63
|
+
natehop@gmail.com.
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
65
|
+
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
67
|
+
reporter of any incident.
|
68
|
+
|
69
|
+
## Enforcement Guidelines
|
70
|
+
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
73
|
+
|
74
|
+
### 1. Correction
|
75
|
+
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
77
|
+
unprofessional or unwelcome in the community.
|
78
|
+
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
82
|
+
|
83
|
+
### 2. Warning
|
84
|
+
|
85
|
+
**Community Impact**: A violation through a single incident or series
|
86
|
+
of actions.
|
87
|
+
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
92
|
+
like social media. Violating these terms may lead to a temporary or
|
93
|
+
permanent ban.
|
94
|
+
|
95
|
+
### 3. Temporary Ban
|
96
|
+
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
98
|
+
sustained inappropriate behavior.
|
99
|
+
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
101
|
+
communication with the community for a specified period of time. No public or
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
104
|
+
Violating these terms may lead to a permanent ban.
|
105
|
+
|
106
|
+
### 4. Permanent Ban
|
107
|
+
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
111
|
+
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within
|
113
|
+
the community.
|
114
|
+
|
115
|
+
## Attribution
|
116
|
+
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
118
|
+
version 2.0, available at
|
119
|
+
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
|
120
|
+
|
121
|
+
Community Impact Guidelines were inspired by [Mozilla's code of conduct
|
122
|
+
enforcement ladder](https://github.com/mozilla/diversity).
|
123
|
+
|
124
|
+
[homepage]: https://www.contributor-covenant.org
|
125
|
+
|
126
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
127
|
+
https://www.contributor-covenant.org/faq. Translations are available at
|
128
|
+
https://www.contributor-covenant.org/translations.
|
data/Gemfile
CHANGED
@@ -1,10 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
source "https://rubygems.org"
|
2
4
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
5
|
|
4
6
|
# Specify your gem's dependencies in turbo_reflex.gemspec.
|
5
7
|
gemspec
|
6
|
-
|
7
|
-
gem "sqlite3"
|
8
|
-
|
9
|
-
# Start debugger with binding.b [https://github.com/ruby/debug]
|
10
|
-
# gem "debug", ">= 1.0.0"
|
data/Gemfile.lock
CHANGED
@@ -1,104 +1,115 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
turbo_reflex (0.0.
|
5
|
-
rails (>=
|
4
|
+
turbo_reflex (0.0.2)
|
5
|
+
rails (>= 6.1)
|
6
6
|
turbo-rails (>= 1.1)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (7.0.
|
12
|
-
actionpack (= 7.0.
|
13
|
-
activesupport (= 7.0.
|
11
|
+
actioncable (7.0.4)
|
12
|
+
actionpack (= 7.0.4)
|
13
|
+
activesupport (= 7.0.4)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (7.0.
|
17
|
-
actionpack (= 7.0.
|
18
|
-
activejob (= 7.0.
|
19
|
-
activerecord (= 7.0.
|
20
|
-
activestorage (= 7.0.
|
21
|
-
activesupport (= 7.0.
|
16
|
+
actionmailbox (7.0.4)
|
17
|
+
actionpack (= 7.0.4)
|
18
|
+
activejob (= 7.0.4)
|
19
|
+
activerecord (= 7.0.4)
|
20
|
+
activestorage (= 7.0.4)
|
21
|
+
activesupport (= 7.0.4)
|
22
22
|
mail (>= 2.7.1)
|
23
23
|
net-imap
|
24
24
|
net-pop
|
25
25
|
net-smtp
|
26
|
-
actionmailer (7.0.
|
27
|
-
actionpack (= 7.0.
|
28
|
-
actionview (= 7.0.
|
29
|
-
activejob (= 7.0.
|
30
|
-
activesupport (= 7.0.
|
26
|
+
actionmailer (7.0.4)
|
27
|
+
actionpack (= 7.0.4)
|
28
|
+
actionview (= 7.0.4)
|
29
|
+
activejob (= 7.0.4)
|
30
|
+
activesupport (= 7.0.4)
|
31
31
|
mail (~> 2.5, >= 2.5.4)
|
32
32
|
net-imap
|
33
33
|
net-pop
|
34
34
|
net-smtp
|
35
35
|
rails-dom-testing (~> 2.0)
|
36
|
-
actionpack (7.0.
|
37
|
-
actionview (= 7.0.
|
38
|
-
activesupport (= 7.0.
|
36
|
+
actionpack (7.0.4)
|
37
|
+
actionview (= 7.0.4)
|
38
|
+
activesupport (= 7.0.4)
|
39
39
|
rack (~> 2.0, >= 2.2.0)
|
40
40
|
rack-test (>= 0.6.3)
|
41
41
|
rails-dom-testing (~> 2.0)
|
42
42
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
43
|
-
actiontext (7.0.
|
44
|
-
actionpack (= 7.0.
|
45
|
-
activerecord (= 7.0.
|
46
|
-
activestorage (= 7.0.
|
47
|
-
activesupport (= 7.0.
|
43
|
+
actiontext (7.0.4)
|
44
|
+
actionpack (= 7.0.4)
|
45
|
+
activerecord (= 7.0.4)
|
46
|
+
activestorage (= 7.0.4)
|
47
|
+
activesupport (= 7.0.4)
|
48
48
|
globalid (>= 0.6.0)
|
49
49
|
nokogiri (>= 1.8.5)
|
50
|
-
actionview (7.0.
|
51
|
-
activesupport (= 7.0.
|
50
|
+
actionview (7.0.4)
|
51
|
+
activesupport (= 7.0.4)
|
52
52
|
builder (~> 3.1)
|
53
53
|
erubi (~> 1.4)
|
54
54
|
rails-dom-testing (~> 2.0)
|
55
55
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
56
|
-
activejob (7.0.
|
57
|
-
activesupport (= 7.0.
|
56
|
+
activejob (7.0.4)
|
57
|
+
activesupport (= 7.0.4)
|
58
58
|
globalid (>= 0.3.6)
|
59
|
-
activemodel (7.0.
|
60
|
-
activesupport (= 7.0.
|
61
|
-
activerecord (7.0.
|
62
|
-
activemodel (= 7.0.
|
63
|
-
activesupport (= 7.0.
|
64
|
-
activestorage (7.0.
|
65
|
-
actionpack (= 7.0.
|
66
|
-
activejob (= 7.0.
|
67
|
-
activerecord (= 7.0.
|
68
|
-
activesupport (= 7.0.
|
59
|
+
activemodel (7.0.4)
|
60
|
+
activesupport (= 7.0.4)
|
61
|
+
activerecord (7.0.4)
|
62
|
+
activemodel (= 7.0.4)
|
63
|
+
activesupport (= 7.0.4)
|
64
|
+
activestorage (7.0.4)
|
65
|
+
actionpack (= 7.0.4)
|
66
|
+
activejob (= 7.0.4)
|
67
|
+
activerecord (= 7.0.4)
|
68
|
+
activesupport (= 7.0.4)
|
69
69
|
marcel (~> 1.0)
|
70
70
|
mini_mime (>= 1.1.0)
|
71
|
-
activesupport (7.0.
|
71
|
+
activesupport (7.0.4)
|
72
72
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
73
|
i18n (>= 1.6, < 2)
|
74
74
|
minitest (>= 5.1)
|
75
75
|
tzinfo (~> 2.0)
|
76
|
+
addressable (2.8.1)
|
77
|
+
public_suffix (>= 2.0.2, < 6.0)
|
78
|
+
ansi (1.5.0)
|
76
79
|
ast (2.4.2)
|
77
|
-
auto_injector (0.8.0)
|
78
|
-
marameters (~> 0.6)
|
79
|
-
zeitwerk (~> 2.6)
|
80
80
|
builder (3.2.4)
|
81
81
|
byebug (11.1.3)
|
82
|
+
capybara (3.37.1)
|
83
|
+
addressable
|
84
|
+
matrix
|
85
|
+
mini_mime (>= 0.1.3)
|
86
|
+
nokogiri (~> 1.8)
|
87
|
+
rack (>= 1.6.0)
|
88
|
+
rack-test (>= 0.6.3)
|
89
|
+
regexp_parser (>= 1.5, < 3.0)
|
90
|
+
xpath (~> 3.2)
|
91
|
+
childprocess (4.1.0)
|
92
|
+
cliver (0.3.2)
|
82
93
|
coderay (1.1.3)
|
83
|
-
cogger (0.3.0)
|
84
|
-
pastel (~> 0.8)
|
85
|
-
refinements (~> 9.6)
|
86
|
-
zeitwerk (~> 2.6)
|
87
94
|
concurrent-ruby (1.1.10)
|
88
95
|
crass (1.0.6)
|
96
|
+
cuprite (0.13)
|
97
|
+
capybara (>= 2.1, < 4)
|
98
|
+
ferrum (~> 0.11.0)
|
89
99
|
digest (3.1.0)
|
90
|
-
dry-container (0.10.1)
|
91
|
-
concurrent-ruby (~> 1.0)
|
92
|
-
dry-core (0.8.1)
|
93
|
-
concurrent-ruby (~> 1.0)
|
94
|
-
dry-monads (1.4.0)
|
95
|
-
concurrent-ruby (~> 1.0)
|
96
|
-
dry-core (~> 0.7)
|
97
100
|
erubi (1.11.0)
|
101
|
+
ferrum (0.11)
|
102
|
+
addressable (~> 2.5)
|
103
|
+
cliver (~> 0.3)
|
104
|
+
concurrent-ruby (~> 1.1)
|
105
|
+
websocket-driver (>= 0.6, < 0.8)
|
98
106
|
globalid (1.0.0)
|
99
107
|
activesupport (>= 5.0)
|
100
108
|
i18n (1.12.0)
|
101
109
|
concurrent-ruby (~> 1.0)
|
110
|
+
importmap-rails (1.1.5)
|
111
|
+
actionpack (>= 6.0.0)
|
112
|
+
railties (>= 6.0.0)
|
102
113
|
json (2.6.2)
|
103
114
|
loofah (2.18.0)
|
104
115
|
crass (~> 1.0.2)
|
@@ -106,13 +117,16 @@ GEM
|
|
106
117
|
magic_frozen_string_literal (1.2.0)
|
107
118
|
mail (2.7.1)
|
108
119
|
mini_mime (>= 0.1.1)
|
109
|
-
marameters (0.6.0)
|
110
|
-
refinements (~> 9.6)
|
111
|
-
zeitwerk (~> 2.6)
|
112
120
|
marcel (1.0.2)
|
121
|
+
matrix (0.4.2)
|
113
122
|
method_source (1.0.0)
|
114
123
|
mini_mime (1.1.2)
|
115
124
|
minitest (5.16.3)
|
125
|
+
minitest-reporters (1.5.0)
|
126
|
+
ansi
|
127
|
+
builder
|
128
|
+
minitest (>= 5.0)
|
129
|
+
ruby-progressbar
|
116
130
|
net-imap (0.2.3)
|
117
131
|
digest
|
118
132
|
net-protocol
|
@@ -133,50 +147,50 @@ GEM
|
|
133
147
|
parallel (1.22.1)
|
134
148
|
parser (3.1.2.1)
|
135
149
|
ast (~> 2.4.1)
|
136
|
-
pastel (0.8.0)
|
137
|
-
tty-color (~> 0.5)
|
138
150
|
pry (0.14.1)
|
139
151
|
coderay (~> 1.1)
|
140
152
|
method_source (~> 1.0)
|
141
153
|
pry-byebug (3.10.1)
|
142
154
|
byebug (~> 11.0)
|
143
155
|
pry (>= 0.13, < 0.15)
|
156
|
+
public_suffix (5.0.0)
|
157
|
+
puma (5.6.5)
|
158
|
+
nio4r (~> 2.0)
|
144
159
|
racc (1.6.0)
|
145
160
|
rack (2.2.4)
|
146
161
|
rack-test (2.0.2)
|
147
162
|
rack (>= 1.3)
|
148
|
-
rails (7.0.
|
149
|
-
actioncable (= 7.0.
|
150
|
-
actionmailbox (= 7.0.
|
151
|
-
actionmailer (= 7.0.
|
152
|
-
actionpack (= 7.0.
|
153
|
-
actiontext (= 7.0.
|
154
|
-
actionview (= 7.0.
|
155
|
-
activejob (= 7.0.
|
156
|
-
activemodel (= 7.0.
|
157
|
-
activerecord (= 7.0.
|
158
|
-
activestorage (= 7.0.
|
159
|
-
activesupport (= 7.0.
|
163
|
+
rails (7.0.4)
|
164
|
+
actioncable (= 7.0.4)
|
165
|
+
actionmailbox (= 7.0.4)
|
166
|
+
actionmailer (= 7.0.4)
|
167
|
+
actionpack (= 7.0.4)
|
168
|
+
actiontext (= 7.0.4)
|
169
|
+
actionview (= 7.0.4)
|
170
|
+
activejob (= 7.0.4)
|
171
|
+
activemodel (= 7.0.4)
|
172
|
+
activerecord (= 7.0.4)
|
173
|
+
activestorage (= 7.0.4)
|
174
|
+
activesupport (= 7.0.4)
|
160
175
|
bundler (>= 1.15.0)
|
161
|
-
railties (= 7.0.
|
176
|
+
railties (= 7.0.4)
|
162
177
|
rails-dom-testing (2.0.3)
|
163
178
|
activesupport (>= 4.2.0)
|
164
179
|
nokogiri (>= 1.6)
|
165
180
|
rails-html-sanitizer (1.4.3)
|
166
181
|
loofah (~> 2.3)
|
167
|
-
railties (7.0.
|
168
|
-
actionpack (= 7.0.
|
169
|
-
activesupport (= 7.0.
|
182
|
+
railties (7.0.4)
|
183
|
+
actionpack (= 7.0.4)
|
184
|
+
activesupport (= 7.0.4)
|
170
185
|
method_source
|
171
186
|
rake (>= 12.2)
|
172
187
|
thor (~> 1.0)
|
173
188
|
zeitwerk (~> 2.5)
|
174
189
|
rainbow (3.1.1)
|
175
190
|
rake (13.0.6)
|
176
|
-
refinements (9.6.0)
|
177
191
|
regexp_parser (2.5.0)
|
178
192
|
rexml (3.2.5)
|
179
|
-
rubocop (1.35.
|
193
|
+
rubocop (1.35.1)
|
180
194
|
json (~> 2.3)
|
181
195
|
parallel (~> 1.10)
|
182
196
|
parser (>= 3.1.2.1)
|
@@ -192,57 +206,70 @@ GEM
|
|
192
206
|
rubocop (>= 1.7.0, < 2.0)
|
193
207
|
rubocop-ast (>= 0.4.0)
|
194
208
|
ruby-progressbar (1.11.0)
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
209
|
+
rubyzip (2.3.2)
|
210
|
+
selenium-webdriver (4.4.0)
|
211
|
+
childprocess (>= 0.5, < 5.0)
|
212
|
+
rexml (~> 3.2, >= 3.2.5)
|
213
|
+
rubyzip (>= 1.2.2, < 3.0)
|
214
|
+
websocket (~> 1.0)
|
215
|
+
sprockets (4.1.1)
|
216
|
+
concurrent-ruby (~> 1.0)
|
217
|
+
rack (> 1, < 3)
|
218
|
+
sprockets-rails (3.4.2)
|
219
|
+
actionpack (>= 5.2)
|
220
|
+
activesupport (>= 5.2)
|
221
|
+
sprockets (>= 3.0.0)
|
222
|
+
sqlite3 (1.5.0-arm64-darwin)
|
223
|
+
standard (1.16.1)
|
224
|
+
rubocop (= 1.35.1)
|
206
225
|
rubocop-performance (= 1.14.3)
|
207
226
|
standardrb (1.0.1)
|
208
227
|
standard
|
209
228
|
strscan (3.0.4)
|
210
229
|
thor (1.2.1)
|
211
230
|
timeout (0.3.0)
|
212
|
-
tocer (14.3.0)
|
213
|
-
auto_injector (~> 0.7)
|
214
|
-
cogger (~> 0.2)
|
215
|
-
dry-container (~> 0.10)
|
216
|
-
refinements (~> 9.6)
|
217
|
-
runcom (~> 8.5)
|
218
|
-
spek (~> 0.5)
|
219
|
-
zeitwerk (~> 2.6)
|
220
|
-
tty-color (0.6.0)
|
221
231
|
turbo-rails (1.1.1)
|
222
232
|
actionpack (>= 6.0.0)
|
223
233
|
activejob (>= 6.0.0)
|
224
234
|
railties (>= 6.0.0)
|
235
|
+
turbo_ready (0.0.7)
|
236
|
+
rails (>= 6.1)
|
237
|
+
turbo-rails (>= 1.1)
|
225
238
|
tzinfo (2.0.5)
|
226
239
|
concurrent-ruby (~> 1.0)
|
227
240
|
unicode-display_width (2.2.0)
|
228
|
-
|
229
|
-
|
241
|
+
webdrivers (5.0.0)
|
242
|
+
nokogiri (~> 1.6)
|
243
|
+
rubyzip (>= 1.3.0)
|
244
|
+
selenium-webdriver (~> 4.0)
|
245
|
+
websocket (1.2.9)
|
230
246
|
websocket-driver (0.7.5)
|
231
247
|
websocket-extensions (>= 0.1.0)
|
232
248
|
websocket-extensions (0.1.5)
|
233
|
-
|
249
|
+
xpath (3.2.0)
|
250
|
+
nokogiri (~> 1.8)
|
234
251
|
zeitwerk (2.6.0)
|
235
252
|
|
236
253
|
PLATFORMS
|
237
254
|
arm64-darwin-21
|
238
255
|
|
239
256
|
DEPENDENCIES
|
257
|
+
capybara
|
258
|
+
cuprite
|
259
|
+
importmap-rails
|
240
260
|
magic_frozen_string_literal
|
261
|
+
minitest-reporters
|
262
|
+
net-smtp
|
241
263
|
pry-byebug
|
264
|
+
puma
|
265
|
+
rake
|
266
|
+
rexml
|
267
|
+
sprockets-rails
|
242
268
|
sqlite3
|
243
269
|
standardrb
|
244
|
-
|
270
|
+
turbo_ready
|
245
271
|
turbo_reflex!
|
272
|
+
webdrivers
|
246
273
|
|
247
274
|
BUNDLED WITH
|
248
|
-
2.3.
|
275
|
+
2.3.21
|