hotwire_native_rails 0.3.0 → 0.3.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db9feb69df016d6781d12df5d095422b9984afe20e0128add4ec5db096bc9232
|
4
|
+
data.tar.gz: ae82da4ac986d04d552d47207b7c93dc75fea6cde2e38944f8b9926997d89b3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18302cf1e8af968d95a23685db7d7020375060bc7a22b628b146d3596791fcdd18409f818d04456594b030d2ab40bc98f90b4d6c1d08fd3108448929155c16f8
|
7
|
+
data.tar.gz: 1385c781224c90744b7eeea4b7fa5690524768cd5fc21db85085ac1725b42ae0f901bc433a80082771ba88e1ca04f1a1c8918dbbcf692e87f82d015cc48a9bfb
|
data/README.md
CHANGED
@@ -23,6 +23,7 @@ rails g hotwire_native
|
|
23
23
|
- use `data: { turbo_action: replace_if_native }` to submit authentication forms & forms in modals
|
24
24
|
- `:mobile` request variant. `index.html+mobile.erb`
|
25
25
|
- override link_to to not open internal links in in-app browser on native app
|
26
|
+
- conditionally override page title for native apps
|
26
27
|
|
27
28
|
#### CSS
|
28
29
|
- `turbo-native:` css variant (works with CSS and Tailwind)
|
@@ -20,7 +20,9 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def add_detect_device_to_application_controller
|
23
|
-
|
23
|
+
inject_into_file "app/controllers/application_controller.rb", after: "class ApplicationController < ActionController::Base\n" do
|
24
|
+
" include DetectDevice\n"
|
25
|
+
end
|
24
26
|
end
|
25
27
|
|
26
28
|
def add_routes
|