turbo-rails 2.0.0.pre.beta.1 → 2.0.0.pre.beta.3

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: d64d1046010fe176342eb0dc1269ce42575b3875e8fbea14eebd282455eb28ee
4
- data.tar.gz: 0da2bd6fdcf894118945c41d3f297c5e3638d1ff732a58b89980f033cc950ead
3
+ metadata.gz: 1b7b21819e793a4171cd5ebdcbd3e9082b1337a3623f5241fccccbca26c70989
4
+ data.tar.gz: 69d69e925673a080bfe40e719df3cf3c838c7188cceb30194146be63cbb929ba
5
5
  SHA512:
6
- metadata.gz: 02ce010eaa7cf96ee30e931499da76ff7beb95525c7cd1a2edd775f6aa354e8524cdbcd7bae2c8806416c6566bb7876ab3d1550fb0f29c18fe007daf2f8b0003
7
- data.tar.gz: f31df5f93132755af3045511f998e38886240656eca467de4de278682ffd1e7c101402aab704988ab6294309d79dc8e767d72ea4d4283c26eb1ac974b7bfd2a6
6
+ metadata.gz: 81c645877d527bcac7d22acb0d6405bda1d15503008599926882f467d89ad544a1dd923c79b348150679e3cbcc65b7ea6a4835cb4ca0c03bf08a72002a023771
7
+ data.tar.gz: 20303a3c019a1f5b8387581b4a29b3bb13b89d8232f58d18efe9de2eb09347eee2964fe78d650b5fb18821cf890092d30025f027f7b530ab53a53e1ee614e189
data/README.md CHANGED
@@ -11,7 +11,7 @@ Turbo is a language-agnostic framework written in JavaScript, but this gem build
11
11
 
12
12
  Turbo is a continuation of the ideas from the previous [Turbolinks](https://github.com/turbolinks/turbolinks) framework, and the heart of that past approach lives on as Turbo Drive. When installed, Turbo automatically intercepts all clicks on `<a href>` links to the same domain. When you click an eligible link, Turbo prevents the browser from following it. Instead, Turbo changes the browser’s URL using the History API, requests the new page using `fetch`, and then renders the HTML response.
13
13
 
14
- During rendering, Turbo replaces the current `<body>` element outright and merges the contents of the `<head>` element. The JavaScript window and document objects, and the HTML `<html>` element, persist from one rendering to the next.
14
+ During rendering, Turbo replaces the current `<body>` element outright and merges the contents of the `<head>` element. The JavaScript window and document objects, and the `<html>` element, persist from one rendering to the next.
15
15
 
16
16
  Whereas Turbolinks previously just dealt with links, Turbo can now also process form submissions and responses. This means the entire flow in the web application is wrapped into Turbo, making all the parts fast. No more need for `data-remote=true`.
17
17
 
@@ -51,7 +51,7 @@ For instance:
51
51
  <% end %>
52
52
  ```
53
53
 
54
- When the user will click on the `Edit this todo` link, as direct response to this direct user interaction, the turbo frame will be replaced with the one in the `edit.html.erb` page automatically.
54
+ When the user clicks on the `Edit this todo` link, as a direct response to this user interaction, the turbo frame will be automatically replaced with the one in the `edit.html.erb` page.
55
55
 
56
56
  [See documentation](https://turbo.hotwired.dev/handbook/frames).
57
57
 
@@ -129,10 +129,7 @@ You can watch [the video introduction to Hotwire](https://hotwired.dev/#screenca
129
129
 
130
130
  ### RubyDoc Documentation
131
131
 
132
- For the API documentation covering this gem's classes and packages, [visit the
133
- RubyDoc page][].
134
-
135
- [visit the RubyDoc page](https://rubydoc.info/github/hotwired/turbo-rails/main)
132
+ For the API documentation covering this gem's classes and packages, [visit the RubyDoc page](https://rubydoc.info/github/hotwired/turbo-rails/main).
136
133
 
137
134
  ## Compatibility with Rails UJS
138
135