turbo-rails 1.4.0 → 1.5.0
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/README.md +47 -2
- data/app/assets/javascripts/turbo.js +3 -1
- data/app/assets/javascripts/turbo.min.js +1 -1
- data/app/assets/javascripts/turbo.min.js.map +1 -1
- data/app/controllers/turbo/frames/frame_request.rb +2 -0
- data/app/controllers/turbo/native/navigation.rb +16 -8
- data/app/helpers/turbo/frames_helper.rb +1 -1
- data/app/helpers/turbo/streams/action_helper.rb +14 -2
- data/app/javascript/turbo/fetch_requests.js +10 -1
- data/app/models/concerns/turbo/broadcastable.rb +14 -1
- data/config/routes.rb +1 -1
- data/lib/install/turbo_with_bun.rb +9 -0
- data/lib/tasks/turbo_tasks.rake +35 -18
- data/lib/turbo/broadcastable/test_helper.rb +172 -0
- data/lib/turbo/engine.rb +15 -1
- data/lib/turbo/test_assertions/integration_test_assertions.rb +76 -0
- data/lib/turbo/test_assertions.rb +61 -5
- data/lib/turbo/version.rb +1 -1
- data/lib/turbo-rails.rb +2 -0
- metadata +6 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbo-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Stephenson
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-
|
13
|
+
date: 2023-10-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activejob
|
@@ -90,12 +90,15 @@ files:
|
|
90
90
|
- app/views/layouts/turbo_rails/frame.html.erb
|
91
91
|
- config/routes.rb
|
92
92
|
- lib/install/turbo_needs_redis.rb
|
93
|
+
- lib/install/turbo_with_bun.rb
|
93
94
|
- lib/install/turbo_with_importmap.rb
|
94
95
|
- lib/install/turbo_with_node.rb
|
95
96
|
- lib/tasks/turbo_tasks.rake
|
96
97
|
- lib/turbo-rails.rb
|
98
|
+
- lib/turbo/broadcastable/test_helper.rb
|
97
99
|
- lib/turbo/engine.rb
|
98
100
|
- lib/turbo/test_assertions.rb
|
101
|
+
- lib/turbo/test_assertions/integration_test_assertions.rb
|
99
102
|
- lib/turbo/version.rb
|
100
103
|
homepage: https://github.com/hotwired/turbo-rails
|
101
104
|
licenses:
|
@@ -116,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
119
|
- !ruby/object:Gem::Version
|
117
120
|
version: '0'
|
118
121
|
requirements: []
|
119
|
-
rubygems_version: 3.4.
|
122
|
+
rubygems_version: 3.4.15
|
120
123
|
signing_key:
|
121
124
|
specification_version: 4
|
122
125
|
summary: The speed of a single-page web application without having to write any JavaScript.
|