hotwire_native_rails 0.3.4 → 0.3.5
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: e90a72439838b37ad270197654dd4f5b3f537aa2898af4c0ca14fa46697028b3
|
4
|
+
data.tar.gz: 80ec851dcc2fc70844455a900e6eed90786e99c023ef4ee16c67f5f08ae16e9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7015cdfc3fa0344936ca9fec047504404b545eb79c11a6a9614c411fdba1bdb512376f9d7fcd9c9954bb0345ecf68fbfc1bd023d453bfe3dbc41cffc13056275
|
7
|
+
data.tar.gz: 261be6fef738aa329d964c081fb452caae2a5b930aa7631e39721a69a39111d3bbe3849b05650f69b42da621b47a4928ddf176586208e5d7373b645893fee67b
|
data/.gitignore
CHANGED
@@ -0,0 +1,19 @@
|
|
1
|
+
# in the Native app, define absolute paths
|
2
|
+
# redirect these absolute paths to the correct controller actions based on context like
|
3
|
+
# current_user, current_organization, etc.
|
4
|
+
# redirect_to user_path(current_user) if current_user&.present?
|
5
|
+
class HotwireNative::TabsController < ActionController::Base
|
6
|
+
# def tab0
|
7
|
+
# redirect_to root_path
|
8
|
+
# end
|
9
|
+
|
10
|
+
def tab1
|
11
|
+
redirect_to organizations_path
|
12
|
+
end
|
13
|
+
|
14
|
+
def tab2
|
15
|
+
redirect_to edit_user_registration_path
|
16
|
+
end
|
17
|
+
|
18
|
+
# add more tabs (max 5)
|
19
|
+
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.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yaro Shm
|
@@ -29,6 +29,7 @@ files:
|
|
29
29
|
- hotwire_native_rails.gemspec
|
30
30
|
- lib/generators/hotwire_native/hotwire_native_generator.rb
|
31
31
|
- lib/generators/hotwire_native/templates/controllers/concerns/device_format.rb
|
32
|
+
- lib/generators/hotwire_native/templates/controllers/hotwire_native/tabs_controller.rb
|
32
33
|
- lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/android/path_configurations_controller.rb
|
33
34
|
- lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/path_configurations_controller.rb
|
34
35
|
- lib/generators/hotwire_native/templates/helpers/hotwire_native_helper.rb
|