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: c99841c967e01bca985531db7d5cfcc08b4068542a9377d4785accf30df06647
4
- data.tar.gz: 0347e31a0697276735e135a3992a7827148a42287e7ebb766e153c4bcbb0f054
3
+ metadata.gz: db9feb69df016d6781d12df5d095422b9984afe20e0128add4ec5db096bc9232
4
+ data.tar.gz: ae82da4ac986d04d552d47207b7c93dc75fea6cde2e38944f8b9926997d89b3e
5
5
  SHA512:
6
- metadata.gz: aecb1c68523353ca6ffe80e95427fb155fc57a9d8041c71f4c6713767ea371453a3e907e2cec799e298fa1b80cbc5092f806278bd4f9743e88831386107b9f48
7
- data.tar.gz: 238a0fc863a5e1310c0451169d0fcf32cba2817aa36c99522012c1893b0a87cd55ba690b7f78b29d21ccb43ea58740faf96b12e148b9e2c414613f0c01c9ab35
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
- inject_into_class "app/controllers/application_controller.rb", ApplicationController, " include DetectDevice\n"
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireNativeRails
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hotwire_native_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaro Shm