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: a96d149563790f2885469e0917ffc47b2f499aef6f9c14a2b22872f3433a52bc
4
- data.tar.gz: b1f9d15ceb4ba725a31557017a1650359af17daeae30db2f0d2cca86f193a7b9
3
+ metadata.gz: e90a72439838b37ad270197654dd4f5b3f537aa2898af4c0ca14fa46697028b3
4
+ data.tar.gz: 80ec851dcc2fc70844455a900e6eed90786e99c023ef4ee16c67f5f08ae16e9c
5
5
  SHA512:
6
- metadata.gz: 6c24c35ed1a3fd220e14423164a1cba2697b01755341630bc35ea88c4080d8c9eff5c9167f29c67c68fcb42ebceec99b3fce471d66c4eed4a35b073e117473f8
7
- data.tar.gz: 5aec65172e6cff6b2b10594a3d7e20431132d68760bb07afdef6deb58ad31e9eeb27cf015678bc67078b29c47960366a61d16d8cf3aa7c6e776c8d7fa1a1d0f9
6
+ metadata.gz: 7015cdfc3fa0344936ca9fec047504404b545eb79c11a6a9614c411fdba1bdb512376f9d7fcd9c9954bb0345ecf68fbfc1bd023d453bfe3dbc41cffc13056275
7
+ data.tar.gz: 261be6fef738aa329d964c081fb452caae2a5b930aa7631e39721a69a39111d3bbe3849b05650f69b42da621b47a4928ddf176586208e5d7373b645893fee67b
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /hotwire_native_rails-*.gem
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireNativeRails
4
- VERSION = "0.3.4"
4
+ VERSION = "0.3.5"
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.4
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