turbo_reflex 0.0.29 → 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 +4 -4
- data/Gemfile.lock +3 -3
- data/README.md +6 -4
- data/lib/turbo_reflex/base.rb +4 -1
- data/lib/turbo_reflex/engine.rb +1 -0
- data/lib/turbo_reflex/version.rb +1 -1
- data/lib/turbo_reflex.rb +1 -0
- data/package.json +2 -2
- data/tags +3 -3
- data/turbo_reflex.gemspec +2 -2
- data/yarn.lock +134 -134
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50a67115edf83c3f6a6c88d9af0d606b1e113775df6c13e7b004d271bfa7861d
|
4
|
+
data.tar.gz: c28cb824bbe80b60ffb9b4b02595681459b1535be51c54de4c1cb08df558f082
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45e47fd21667e00d8bedd67c894a7696d09e8a0455dbf8543d8974effbd9b6e6c3f3b6061943021975f1903b459f99a699ee1b4d08a4bf5ccaba6f82920550ab
|
7
|
+
data.tar.gz: 662bc2ee9e3bfcf68ef7fa572394456a5699178848beb9e879a2624b315313231c5f3a3b1c22c4ff7ea809653bc82447f0905ae865f60312d57eeb1c3e16ea62
|
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
turbo_reflex (0.0.
|
4
|
+
turbo_reflex (0.0.30)
|
5
5
|
rails (>= 6.1)
|
6
6
|
turbo-rails (>= 1.1)
|
7
|
-
turbo_ready (>= 0.1.
|
7
|
+
turbo_ready (>= 0.1.4)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
@@ -243,7 +243,7 @@ GEM
|
|
243
243
|
actionpack (>= 6.0.0)
|
244
244
|
activejob (>= 6.0.0)
|
245
245
|
railties (>= 6.0.0)
|
246
|
-
turbo_ready (0.1.
|
246
|
+
turbo_ready (0.1.4)
|
247
247
|
rails (>= 6.1)
|
248
248
|
turbo-rails (>= 1.1)
|
249
249
|
tzinfo (2.0.5)
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
</h1>
|
9
9
|
<p align="center">
|
10
10
|
<a href="http://blog.codinghorror.com/the-best-code-is-no-code-at-all/">
|
11
|
-
<img alt="Lines of Code" src="https://img.shields.io/badge/loc-
|
11
|
+
<img alt="Lines of Code" src="https://img.shields.io/badge/loc-1244-47d299.svg" />
|
12
12
|
</a>
|
13
13
|
<a href="https://codeclimate.com/github/hopsoft/turbo_reflex/maintainability">
|
14
14
|
<img src="https://api.codeclimate.com/v1/badges/fe1162a742fe83a4fdfd/maintainability" />
|
@@ -120,14 +120,15 @@ TurboReflex is a lightweight Turbo Frame extension... which means that reactivit
|
|
120
120
|
|
121
121
|
```diff
|
122
122
|
# Gemfile
|
123
|
-
|
123
|
+
gem "turbo-rails", ">= 1.1", "< 2"
|
124
|
+
+gem "turbo_reflex", "~> VERSION"
|
124
125
|
```
|
125
126
|
|
126
127
|
```diff
|
127
128
|
# package.json
|
128
129
|
"dependencies": {
|
129
|
-
"@hotwired/turbo-rails": ">=7.
|
130
|
-
+ "turbo_reflex": "^
|
130
|
+
"@hotwired/turbo-rails": ">=7.2",
|
131
|
+
+ "turbo_reflex": "^VERSION"
|
131
132
|
```
|
132
133
|
|
133
134
|
*Be sure to install the __same version__ of the Ruby and JavaScript libraries.*
|
@@ -136,6 +137,7 @@ TurboReflex is a lightweight Turbo Frame extension... which means that reactivit
|
|
136
137
|
|
137
138
|
```diff
|
138
139
|
# app/javascript/application.js
|
140
|
+
import '@hotwired/turbo-rails'
|
139
141
|
+import 'turbo_reflex'
|
140
142
|
```
|
141
143
|
|
data/lib/turbo_reflex/base.rb
CHANGED
@@ -17,11 +17,14 @@ require_relative "attribute_set"
|
|
17
17
|
# * render ...................... Renders Rails templates, partials, etc. (doesn't halt controller request handling)
|
18
18
|
# * render_response ............. Renders a full controller response
|
19
19
|
# * renderer .................... An ActionController::Renderer
|
20
|
-
# * prevent_controller_action ... Prevents the rails controller/action from running (i.e. the reflex handles the response entirely)
|
21
20
|
# * turbo_stream ................ A Turbo Stream TagBuilder
|
22
21
|
# * turbo_streams ............... A list of Turbo Streams to append to the response (also aliased as streams)
|
23
22
|
# * state ....................... An object that stores ephemeral `state`
|
24
23
|
#
|
24
|
+
# They also have access to the following class methods:
|
25
|
+
#
|
26
|
+
# * prevent_controller_action ... Prevents the rails controller/action from running (i.e. the reflex handles the response entirely)
|
27
|
+
#
|
25
28
|
class TurboReflex::Base
|
26
29
|
class << self
|
27
30
|
def preventers
|
data/lib/turbo_reflex/engine.rb
CHANGED
data/lib/turbo_reflex/version.rb
CHANGED
data/lib/turbo_reflex.rb
CHANGED
data/package.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "turbo_reflex",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.29",
|
4
4
|
"description": "Reflexes for Turbo Frames that help you build robust reactive applications",
|
5
5
|
"main": "app/javascript/index.js",
|
6
6
|
"repository": "https://github.com/hopsoft/turbo_reflex",
|
7
7
|
"author": "Nate Hopkins (hopsoft) <natehop@gmail.com>",
|
8
8
|
"license": "MIT",
|
9
9
|
"dependencies": {
|
10
|
-
"turbo_ready": ">= 0.1.
|
10
|
+
"turbo_ready": ">= 0.1.4"
|
11
11
|
},
|
12
12
|
"peerDependencies": {
|
13
13
|
"@hotwired/turbo-rails": ">= 7.2.0"
|
data/tags
CHANGED
@@ -218063,7 +218063,7 @@ VDash node_modules/parse-srcset/tests/he.js /^ var decodeMap = {'Aacute':'\\xC1'
|
|
218063
218063
|
VDash node_modules/simple-html-tokenizer/dist/es6/index.js /^ Aacute: "Á", aacute: "á", Abreve: "Ă", abreve: "ă", ac: "∾", acd: "∿", acE: "∾̳",/;" p variable:namedCharRefs
|
218064
218064
|
VDash node_modules/simple-html-tokenizer/dist/simple-html-tokenizer.js /^ Aacute: "Á", aacute: "á", Abreve: "Ă", abreve: "ă", ac: "∾", acd: "∿", acE: "∾/;" p variable:anonymousFunction3825d8d70300.namedCharRefs
|
218065
218065
|
VDash node_modules/simple-html-tokenizer/dist/types/generated/html5-named-char-refs.d.ts /^ VDash: string;$/;" C
|
218066
|
-
VERSION lib/turbo_reflex/version.rb /^ VERSION = "0.0.
|
218066
|
+
VERSION lib/turbo_reflex/version.rb /^ VERSION = "0.0.30"$/;" C module:TurboReflex
|
218067
218067
|
VERSION node_modules/@angular/compiler/esm2015/src/output/source_map.js /^const VERSION = 3;$/;" C
|
218068
218068
|
VERSION node_modules/@angular/compiler/esm2015/src/version.js /^export const VERSION = new Version('8.2.14');$/;" C
|
218069
218069
|
VERSION node_modules/@angular/compiler/esm5/src/output/source_map.js /^var VERSION = 3;$/;" v
|
@@ -463870,7 +463870,7 @@ tupleTypeOf node_modules/@angular/compiler/fesm5/compiler.js /^function tupleTyp
|
|
463870
463870
|
tupleTypeOf node_modules/@angular/compiler/src/render3/r3_module_compiler.js /^ function tupleTypeOf(exp) {$/;" f function:anonymousFunctione07fbc9d0200
|
463871
463871
|
turbo-ready:demo node_modules/turbo_ready/test/dummy/app/javascript/demos/event.js /^window.TurboReadyEvents = { 'turbo-ready:demo': [] }$/;" p property:window.TurboReadyEvents
|
463872
463872
|
turbo_ready node_modules/turbo_ready/turbo_ready.gemspec /^ s.name = "turbo_ready"$/;" g
|
463873
|
-
turbo_ready package.json /^ "turbo_ready": ">= 0.1.
|
463873
|
+
turbo_ready package.json /^ "turbo_ready": ">= 0.1.4"$/;" s object:dependencies
|
463874
463874
|
turbo_reflex app/controllers/concerns/turbo_reflex/controller.rb /^ def turbo_reflex$/;" f module:Controller
|
463875
463875
|
turbo_reflex turbo_reflex.gemspec /^ s.name = "turbo_reflex"$/;" g
|
463876
463876
|
turbo_reflex_state app/controllers/concerns/turbo_reflex/controller.rb /^ def turbo_reflex_state(&block)$/;" f module:Controller.ClassMethods
|
@@ -484068,7 +484068,7 @@ version node_modules/yaml/dist/index.js /^ version: '1.2'$/;" p variable:defaul
|
|
484068
484068
|
version node_modules/yaml/dist/test-events.js /^ version: '1.2'$/;" p variable:testEvents.anonymousObjecta2b129440205
|
484069
484069
|
version node_modules/yaml/package.json /^ "version": "1.8.3",$/;" s
|
484070
484070
|
version node_modules/yocto-queue/package.json /^ "version": "0.1.0",$/;" s
|
484071
|
-
version package.json /^ "version": "0.0.
|
484071
|
+
version package.json /^ "version": "0.0.29",$/;" s
|
484072
484072
|
versionIncluded node_modules/prettier-standard/src/vendor/node_modules/resolve/lib/core.js /^function versionIncluded(specifierValue) {$/;" f
|
484073
484073
|
versionIncluded node_modules/resolve/lib/core.js /^function versionIncluded(specifierValue) {$/;" f
|
484074
484074
|
versionInfo node_modules/graphql/version.d.ts /^export const versionInfo: {$/;" C
|
data/turbo_reflex.gemspec
CHANGED
@@ -14,13 +14,13 @@ Gem::Specification.new do |s|
|
|
14
14
|
|
15
15
|
s.metadata["homepage_uri"] = s.homepage
|
16
16
|
s.metadata["source_code_uri"] = s.homepage
|
17
|
-
s.metadata["changelog_uri"] = s.homepage + "/blob/
|
17
|
+
s.metadata["changelog_uri"] = s.homepage + "/blob/main/CHANGELOG.md"
|
18
18
|
|
19
19
|
s.files = Dir["app/**/*", "bin/*", "config/*", "lib/**/*.rb", "[A-Z]*"]
|
20
20
|
|
21
21
|
s.add_dependency "rails", ">= 6.1"
|
22
22
|
s.add_dependency "turbo-rails", ">= 1.1"
|
23
|
-
s.add_dependency "turbo_ready", ">= 0.1.
|
23
|
+
s.add_dependency "turbo_ready", ">= 0.1.4"
|
24
24
|
|
25
25
|
s.add_development_dependency "capybara"
|
26
26
|
s.add_development_dependency "cuprite"
|
data/yarn.lock
CHANGED
@@ -54,115 +54,115 @@
|
|
54
54
|
dependencies:
|
55
55
|
regenerator-runtime "^0.13.11"
|
56
56
|
|
57
|
-
"@esbuild/android-arm64@0.16.
|
58
|
-
version "0.16.
|
59
|
-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.
|
60
|
-
integrity sha512-
|
61
|
-
|
62
|
-
"@esbuild/android-arm@0.16.
|
63
|
-
version "0.16.
|
64
|
-
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.
|
65
|
-
integrity sha512-
|
66
|
-
|
67
|
-
"@esbuild/android-x64@0.16.
|
68
|
-
version "0.16.
|
69
|
-
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.
|
70
|
-
integrity sha512-
|
71
|
-
|
72
|
-
"@esbuild/darwin-arm64@0.16.
|
73
|
-
version "0.16.
|
74
|
-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.
|
75
|
-
integrity sha512-
|
76
|
-
|
77
|
-
"@esbuild/darwin-x64@0.16.
|
78
|
-
version "0.16.
|
79
|
-
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.
|
80
|
-
integrity sha512-
|
81
|
-
|
82
|
-
"@esbuild/freebsd-arm64@0.16.
|
83
|
-
version "0.16.
|
84
|
-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.
|
85
|
-
integrity sha512-
|
86
|
-
|
87
|
-
"@esbuild/freebsd-x64@0.16.
|
88
|
-
version "0.16.
|
89
|
-
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.
|
90
|
-
integrity sha512-
|
91
|
-
|
92
|
-
"@esbuild/linux-arm64@0.16.
|
93
|
-
version "0.16.
|
94
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.
|
95
|
-
integrity sha512-
|
96
|
-
|
97
|
-
"@esbuild/linux-arm@0.16.
|
98
|
-
version "0.16.
|
99
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.
|
100
|
-
integrity sha512-
|
101
|
-
|
102
|
-
"@esbuild/linux-ia32@0.16.
|
103
|
-
version "0.16.
|
104
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.
|
105
|
-
integrity sha512-
|
106
|
-
|
107
|
-
"@esbuild/linux-loong64@0.16.
|
108
|
-
version "0.16.
|
109
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.
|
110
|
-
integrity sha512-
|
111
|
-
|
112
|
-
"@esbuild/linux-mips64el@0.16.
|
113
|
-
version "0.16.
|
114
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.
|
115
|
-
integrity sha512-
|
116
|
-
|
117
|
-
"@esbuild/linux-ppc64@0.16.
|
118
|
-
version "0.16.
|
119
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.
|
120
|
-
integrity sha512-
|
121
|
-
|
122
|
-
"@esbuild/linux-riscv64@0.16.
|
123
|
-
version "0.16.
|
124
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.
|
125
|
-
integrity sha512-
|
126
|
-
|
127
|
-
"@esbuild/linux-s390x@0.16.
|
128
|
-
version "0.16.
|
129
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.
|
130
|
-
integrity sha512-
|
131
|
-
|
132
|
-
"@esbuild/linux-x64@0.16.
|
133
|
-
version "0.16.
|
134
|
-
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.
|
135
|
-
integrity sha512-
|
136
|
-
|
137
|
-
"@esbuild/netbsd-x64@0.16.
|
138
|
-
version "0.16.
|
139
|
-
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.
|
140
|
-
integrity sha512-
|
141
|
-
|
142
|
-
"@esbuild/openbsd-x64@0.16.
|
143
|
-
version "0.16.
|
144
|
-
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.
|
145
|
-
integrity sha512-
|
146
|
-
|
147
|
-
"@esbuild/sunos-x64@0.16.
|
148
|
-
version "0.16.
|
149
|
-
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.
|
150
|
-
integrity sha512-
|
151
|
-
|
152
|
-
"@esbuild/win32-arm64@0.16.
|
153
|
-
version "0.16.
|
154
|
-
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.
|
155
|
-
integrity sha512-
|
156
|
-
|
157
|
-
"@esbuild/win32-ia32@0.16.
|
158
|
-
version "0.16.
|
159
|
-
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.
|
160
|
-
integrity sha512-
|
161
|
-
|
162
|
-
"@esbuild/win32-x64@0.16.
|
163
|
-
version "0.16.
|
164
|
-
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.
|
165
|
-
integrity sha512-
|
57
|
+
"@esbuild/android-arm64@0.16.4":
|
58
|
+
version "0.16.4"
|
59
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.4.tgz#4b31b9e3da2e4c12a8170bd682f713c775f68ab1"
|
60
|
+
integrity sha512-VPuTzXFm/m2fcGfN6CiwZTlLzxrKsWbPkG7ArRFpuxyaHUm/XFHQPD4xNwZT6uUmpIHhnSjcaCmcla8COzmZ5Q==
|
61
|
+
|
62
|
+
"@esbuild/android-arm@0.16.4":
|
63
|
+
version "0.16.4"
|
64
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.4.tgz#057d3e8b0ee41ff59386c33ba6dcf20f4bedd1f7"
|
65
|
+
integrity sha512-rZzb7r22m20S1S7ufIc6DC6W659yxoOrl7sKP1nCYhuvUlnCFHVSbATG4keGUtV8rDz11sRRDbWkvQZpzPaHiw==
|
66
|
+
|
67
|
+
"@esbuild/android-x64@0.16.4":
|
68
|
+
version "0.16.4"
|
69
|
+
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.4.tgz#62ccab8ac1d3e6ef1df3fa2e1974bc2b8528d74a"
|
70
|
+
integrity sha512-MW+B2O++BkcOfMWmuHXB15/l1i7wXhJFqbJhp82IBOais8RBEQv2vQz/jHrDEHaY2X0QY7Wfw86SBL2PbVOr0g==
|
71
|
+
|
72
|
+
"@esbuild/darwin-arm64@0.16.4":
|
73
|
+
version "0.16.4"
|
74
|
+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.4.tgz#c19a6489d626c36fc611c85ccd8a3333c1f2a930"
|
75
|
+
integrity sha512-a28X1O//aOfxwJVZVs7ZfM8Tyih2Za4nKJrBwW5Wm4yKsnwBy9aiS/xwpxiiTRttw3EaTg4Srerhcm6z0bu9Wg==
|
76
|
+
|
77
|
+
"@esbuild/darwin-x64@0.16.4":
|
78
|
+
version "0.16.4"
|
79
|
+
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.4.tgz#b726bbc84a1e277f6ec2509d10b8ee03f242b776"
|
80
|
+
integrity sha512-e3doCr6Ecfwd7VzlaQqEPrnbvvPjE9uoTpxG5pyLzr2rI2NMjDHmvY1E5EO81O/e9TUOLLkXA5m6T8lfjK9yAA==
|
81
|
+
|
82
|
+
"@esbuild/freebsd-arm64@0.16.4":
|
83
|
+
version "0.16.4"
|
84
|
+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.4.tgz#364568e6ca2901297f247de0681c9b14bbe658c8"
|
85
|
+
integrity sha512-Oup3G/QxBgvvqnXWrBed7xxkFNwAwJVHZcklWyQt7YCAL5bfUkaa6FVWnR78rNQiM8MqqLiT6ZTZSdUFuVIg1w==
|
86
|
+
|
87
|
+
"@esbuild/freebsd-x64@0.16.4":
|
88
|
+
version "0.16.4"
|
89
|
+
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.4.tgz#44701ba4a5497ba64eec0a6c9e221d8f46a25e72"
|
90
|
+
integrity sha512-vAP+eYOxlN/Bpo/TZmzEQapNS8W1njECrqkTpNgvXskkkJC2AwOXwZWai/Kc2vEFZUXQttx6UJbj9grqjD/+9Q==
|
91
|
+
|
92
|
+
"@esbuild/linux-arm64@0.16.4":
|
93
|
+
version "0.16.4"
|
94
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.4.tgz#b58fb418ec9ac714d8dbb38c787ff2441eb1d9db"
|
95
|
+
integrity sha512-2zXoBhv4r5pZiyjBKrOdFP4CXOChxXiYD50LRUU+65DkdS5niPFHbboKZd/c81l0ezpw7AQnHeoCy5hFrzzs4g==
|
96
|
+
|
97
|
+
"@esbuild/linux-arm@0.16.4":
|
98
|
+
version "0.16.4"
|
99
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.4.tgz#b37f15ecddb53eeea466e5960e31a58f33e0e87e"
|
100
|
+
integrity sha512-A47ZmtpIPyERxkSvIv+zLd6kNIOtJH03XA0Hy7jaceRDdQaQVGSDt4mZqpWqJYgDk9rg96aglbF6kCRvPGDSUA==
|
101
|
+
|
102
|
+
"@esbuild/linux-ia32@0.16.4":
|
103
|
+
version "0.16.4"
|
104
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.4.tgz#117e32a9680b5deac184ebee122f8575369fad1b"
|
105
|
+
integrity sha512-uxdSrpe9wFhz4yBwt2kl2TxS/NWEINYBUFIxQtaEVtglm1eECvsj1vEKI0KX2k2wCe17zDdQ3v+jVxfwVfvvjw==
|
106
|
+
|
107
|
+
"@esbuild/linux-loong64@0.16.4":
|
108
|
+
version "0.16.4"
|
109
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.4.tgz#dd504fb83c280752d4b485d9acb3cf391cb7bf5b"
|
110
|
+
integrity sha512-peDrrUuxbZ9Jw+DwLCh/9xmZAk0p0K1iY5d2IcwmnN+B87xw7kujOkig6ZRcZqgrXgeRGurRHn0ENMAjjD5DEg==
|
111
|
+
|
112
|
+
"@esbuild/linux-mips64el@0.16.4":
|
113
|
+
version "0.16.4"
|
114
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.4.tgz#9ab77e31cf3be1e35572afff94b51df8149d15bd"
|
115
|
+
integrity sha512-sD9EEUoGtVhFjjsauWjflZklTNr57KdQ6xfloO4yH1u7vNQlOfAlhEzbyBKfgbJlW7rwXYBdl5/NcZ+Mg2XhQA==
|
116
|
+
|
117
|
+
"@esbuild/linux-ppc64@0.16.4":
|
118
|
+
version "0.16.4"
|
119
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.4.tgz#69d56c2a960808bee1c7b9b84a115220ec9ce05c"
|
120
|
+
integrity sha512-X1HSqHUX9D+d0l6/nIh4ZZJ94eQky8d8z6yxAptpZE3FxCWYWvTDd9X9ST84MGZEJx04VYUD/AGgciddwO0b8g==
|
121
|
+
|
122
|
+
"@esbuild/linux-riscv64@0.16.4":
|
123
|
+
version "0.16.4"
|
124
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.4.tgz#9fc23583f4a1508a8d352bd376340e42217e8a90"
|
125
|
+
integrity sha512-97ANpzyNp0GTXCt6SRdIx1ngwncpkV/z453ZuxbnBROCJ5p/55UjhbaG23UdHj88fGWLKPFtMoU4CBacz4j9FA==
|
126
|
+
|
127
|
+
"@esbuild/linux-s390x@0.16.4":
|
128
|
+
version "0.16.4"
|
129
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.4.tgz#4cae1f70ac2943f076dd130c3c80d28f57bf75d1"
|
130
|
+
integrity sha512-pUvPQLPmbEeJRPjP0DYTC1vjHyhrnCklQmCGYbipkep+oyfTn7GTBJXoPodR7ZS5upmEyc8lzAkn2o29wD786A==
|
131
|
+
|
132
|
+
"@esbuild/linux-x64@0.16.4":
|
133
|
+
version "0.16.4"
|
134
|
+
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.4.tgz#fdf494de07cda23a2dc4b71ff1e0848e4ee6539c"
|
135
|
+
integrity sha512-N55Q0mJs3Sl8+utPRPBrL6NLYZKBCLLx0bme/+RbjvMforTGGzFvsRl4xLTZMUBFC1poDzBEPTEu5nxizQ9Nlw==
|
136
|
+
|
137
|
+
"@esbuild/netbsd-x64@0.16.4":
|
138
|
+
version "0.16.4"
|
139
|
+
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.4.tgz#b59ecb49087119c575c0f64d7e66001d52799e24"
|
140
|
+
integrity sha512-LHSJLit8jCObEQNYkgsDYBh2JrJT53oJO2HVdkSYLa6+zuLJh0lAr06brXIkljrlI+N7NNW1IAXGn/6IZPi3YQ==
|
141
|
+
|
142
|
+
"@esbuild/openbsd-x64@0.16.4":
|
143
|
+
version "0.16.4"
|
144
|
+
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.4.tgz#c51e36db875948b7b11d08bafa355605a1aa289c"
|
145
|
+
integrity sha512-nLgdc6tWEhcCFg/WVFaUxHcPK3AP/bh+KEwKtl69Ay5IBqUwKDaq/6Xk0E+fh/FGjnLwqFSsarsbPHeKM8t8Sw==
|
146
|
+
|
147
|
+
"@esbuild/sunos-x64@0.16.4":
|
148
|
+
version "0.16.4"
|
149
|
+
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.4.tgz#0b50e941cd44f069e9f2573321aec984244ec228"
|
150
|
+
integrity sha512-08SluG24GjPO3tXKk95/85n9kpyZtXCVwURR2i4myhrOfi3jspClV0xQQ0W0PYWHioJj+LejFMt41q+PG3mlAQ==
|
151
|
+
|
152
|
+
"@esbuild/win32-arm64@0.16.4":
|
153
|
+
version "0.16.4"
|
154
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.4.tgz#d1c93b20f17355ab2221cd18e13ae2f1b68013e3"
|
155
|
+
integrity sha512-yYiRDQcqLYQSvNQcBKN7XogbrSvBE45FEQdH8fuXPl7cngzkCvpsG2H9Uey39IjQ6gqqc+Q4VXYHsQcKW0OMjQ==
|
156
|
+
|
157
|
+
"@esbuild/win32-ia32@0.16.4":
|
158
|
+
version "0.16.4"
|
159
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.4.tgz#df5910e76660e0acbbdceb8d4ae6bf1efeade6ae"
|
160
|
+
integrity sha512-5rabnGIqexekYkh9zXG5waotq8mrdlRoBqAktjx2W3kb0zsI83mdCwrcAeKYirnUaTGztR5TxXcXmQrEzny83w==
|
161
|
+
|
162
|
+
"@esbuild/win32-x64@0.16.4":
|
163
|
+
version "0.16.4"
|
164
|
+
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.4.tgz#6ec594468610c176933da1387c609558371d37e0"
|
165
|
+
integrity sha512-sN/I8FMPtmtT2Yw+Dly8Ur5vQ5a/RmC8hW7jO9PtPSQUPkowxWpcUZnqOggU7VwyT3Xkj6vcXWd3V/qTXwultQ==
|
166
166
|
|
167
167
|
"@eslint/eslintrc@^1.3.3":
|
168
168
|
version "1.3.3"
|
@@ -802,32 +802,32 @@ error-ex@^1.3.1:
|
|
802
802
|
is-arrayish "^0.2.1"
|
803
803
|
|
804
804
|
esbuild@^0.16.3:
|
805
|
-
version "0.16.
|
806
|
-
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.
|
807
|
-
integrity sha512-
|
805
|
+
version "0.16.4"
|
806
|
+
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.4.tgz#06c86298d233386f5e41bcc14d36086daf3f40bd"
|
807
|
+
integrity sha512-qQrPMQpPTWf8jHugLWHoGqZjApyx3OEm76dlTXobHwh/EBbavbRdjXdYi/GWr43GyN0sfpap14GPkb05NH3ROA==
|
808
808
|
optionalDependencies:
|
809
|
-
"@esbuild/android-arm" "0.16.
|
810
|
-
"@esbuild/android-arm64" "0.16.
|
811
|
-
"@esbuild/android-x64" "0.16.
|
812
|
-
"@esbuild/darwin-arm64" "0.16.
|
813
|
-
"@esbuild/darwin-x64" "0.16.
|
814
|
-
"@esbuild/freebsd-arm64" "0.16.
|
815
|
-
"@esbuild/freebsd-x64" "0.16.
|
816
|
-
"@esbuild/linux-arm" "0.16.
|
817
|
-
"@esbuild/linux-arm64" "0.16.
|
818
|
-
"@esbuild/linux-ia32" "0.16.
|
819
|
-
"@esbuild/linux-loong64" "0.16.
|
820
|
-
"@esbuild/linux-mips64el" "0.16.
|
821
|
-
"@esbuild/linux-ppc64" "0.16.
|
822
|
-
"@esbuild/linux-riscv64" "0.16.
|
823
|
-
"@esbuild/linux-s390x" "0.16.
|
824
|
-
"@esbuild/linux-x64" "0.16.
|
825
|
-
"@esbuild/netbsd-x64" "0.16.
|
826
|
-
"@esbuild/openbsd-x64" "0.16.
|
827
|
-
"@esbuild/sunos-x64" "0.16.
|
828
|
-
"@esbuild/win32-arm64" "0.16.
|
829
|
-
"@esbuild/win32-ia32" "0.16.
|
830
|
-
"@esbuild/win32-x64" "0.16.
|
809
|
+
"@esbuild/android-arm" "0.16.4"
|
810
|
+
"@esbuild/android-arm64" "0.16.4"
|
811
|
+
"@esbuild/android-x64" "0.16.4"
|
812
|
+
"@esbuild/darwin-arm64" "0.16.4"
|
813
|
+
"@esbuild/darwin-x64" "0.16.4"
|
814
|
+
"@esbuild/freebsd-arm64" "0.16.4"
|
815
|
+
"@esbuild/freebsd-x64" "0.16.4"
|
816
|
+
"@esbuild/linux-arm" "0.16.4"
|
817
|
+
"@esbuild/linux-arm64" "0.16.4"
|
818
|
+
"@esbuild/linux-ia32" "0.16.4"
|
819
|
+
"@esbuild/linux-loong64" "0.16.4"
|
820
|
+
"@esbuild/linux-mips64el" "0.16.4"
|
821
|
+
"@esbuild/linux-ppc64" "0.16.4"
|
822
|
+
"@esbuild/linux-riscv64" "0.16.4"
|
823
|
+
"@esbuild/linux-s390x" "0.16.4"
|
824
|
+
"@esbuild/linux-x64" "0.16.4"
|
825
|
+
"@esbuild/netbsd-x64" "0.16.4"
|
826
|
+
"@esbuild/openbsd-x64" "0.16.4"
|
827
|
+
"@esbuild/sunos-x64" "0.16.4"
|
828
|
+
"@esbuild/win32-arm64" "0.16.4"
|
829
|
+
"@esbuild/win32-ia32" "0.16.4"
|
830
|
+
"@esbuild/win32-x64" "0.16.4"
|
831
831
|
|
832
832
|
escape-string-regexp@2.0.0:
|
833
833
|
version "2.0.0"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbo_reflex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nate Hopkins (hopsoft)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.1.
|
47
|
+
version: 0.1.4
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.1.
|
54
|
+
version: 0.1.4
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: capybara
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -416,7 +416,7 @@ licenses:
|
|
416
416
|
metadata:
|
417
417
|
homepage_uri: https://github.com/hopsoft/turbo_reflex
|
418
418
|
source_code_uri: https://github.com/hopsoft/turbo_reflex
|
419
|
-
changelog_uri: https://github.com/hopsoft/turbo_reflex/blob/
|
419
|
+
changelog_uri: https://github.com/hopsoft/turbo_reflex/blob/main/CHANGELOG.md
|
420
420
|
post_install_message:
|
421
421
|
rdoc_options: []
|
422
422
|
require_paths:
|