hotwire_native_rails 0.4.1 → 0.4.3
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 +1 -1
- data/lib/generators/hotwire_native/hotwire_native_generator.rb +2 -2
- data/lib/generators/hotwire_native/templates/controllers/hotwire_native/tabs_controller.rb +7 -2
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/button_controller.js +5 -0
- data/lib/hotwire_native_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c93be4ec7b1c6d1da2a55b312102a3c9fab902f98d8db6ca563ec3cbb6aae841
|
4
|
+
data.tar.gz: 255c754a95d230bab1d4875e9a264b361cc7ab18e2b1e63ed1d8a551a8c80d9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4f1b9031c143ff32fba6d2e760e42125eea3aba64b90dfdd465b72284da0c6e8289bde70e2b6ed4ddd2cdb817b0701d3c714511e72f888db34fc1869d16c802
|
7
|
+
data.tar.gz: dd763fa651b9f7ce2a27256ea641ea541e5e2436f01ed553967f8aff1595ef504b4f816488d8911e93a0730905153ec6ff7fc3e862293a01a693f690c41fb0de
|
data/README.md
CHANGED
@@ -56,7 +56,7 @@ Make a release to rubygems:
|
|
56
56
|
# 2. zip the gem
|
57
57
|
gem build hotwire_native_rails.gemspec
|
58
58
|
# 3. push the zip to rubygems
|
59
|
-
gem push hotwire_native_rails-0.4.
|
59
|
+
gem push hotwire_native_rails-0.4.2.gem
|
60
60
|
```
|
61
61
|
|
62
62
|
- [Github source](https://github.com/yshmarov/hotwire_native_rails)
|
@@ -100,8 +100,8 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
100
100
|
append_to_file "app/assets/stylesheets/application.css" do
|
101
101
|
<<-CSS
|
102
102
|
|
103
|
-
body.hotwire-native .hotwire-native
|
104
|
-
display: none;
|
103
|
+
body.hotwire-native .d-hotwire-native-none {
|
104
|
+
display: none !important;
|
105
105
|
}
|
106
106
|
CSS
|
107
107
|
end
|
@@ -8,12 +8,17 @@ class HotwireNative::TabsController < ActionController::Base
|
|
8
8
|
# end
|
9
9
|
|
10
10
|
def tab1
|
11
|
-
redirect_to
|
11
|
+
redirect_to root_path
|
12
|
+
# redirect_to projects_path
|
12
13
|
end
|
13
14
|
|
14
15
|
def tab2
|
15
|
-
redirect_to
|
16
|
+
redirect_to root_path
|
17
|
+
# redirect_to edit_user_registration_path
|
16
18
|
end
|
17
19
|
|
18
20
|
# add more tabs (max 5)
|
21
|
+
# def tab3; end
|
22
|
+
# def tab4; end
|
23
|
+
# def tab5; end
|
19
24
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hotwire_native_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yaro Shm
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-21 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|