voidable-hotwire 0.1.0 → 0.2.0
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/app/views/devise/confirmations/new.html.erb +22 -0
- data/app/views/devise/passwords/edit.html.erb +27 -0
- data/app/views/devise/passwords/new.html.erb +21 -0
- data/app/views/devise/registrations/edit.html.erb +50 -0
- data/app/views/devise/registrations/new.html.erb +29 -0
- data/app/views/devise/sessions/new.html.erb +35 -0
- data/app/views/devise/shared/_error_messages.html.erb +10 -0
- data/app/views/devise/shared/_links.html.erb +33 -0
- data/app/views/devise/unlocks/new.html.erb +22 -0
- data/config/importmap.rb +5 -0
- data/lib/generators/voidable/devise_views/devise_views_generator.rb +15 -0
- data/lib/generators/voidable/install/install_generator.rb +112 -0
- data/lib/generators/voidable/install/templates/_settings_menu.html.erb +31 -0
- data/lib/generators/voidable/install/templates/application_sidebar.html.erb.tt +86 -0
- data/lib/generators/voidable/install/templates/application_topbar.html.erb.tt +69 -0
- data/lib/generators/voidable/install/templates/initializer.rb.tt +2 -0
- data/lib/generators/voidable/install/templates/settings_controller.rb.tt +7 -0
- data/lib/generators/voidable/install/templates/sidebar.html.erb.tt +86 -0
- data/lib/generators/voidable/install/templates/topbar.html.erb.tt +69 -0
- data/lib/generators/voidable/install/templates/voidable-devise.css +37 -0
- data/lib/generators/voidable/install/templates/voidable-layout-sidebar.css +460 -0
- data/lib/generators/voidable/install/templates/voidable-layout-topbar.css +361 -0
- data/lib/generators/voidable/install/templates/voidable-layout.js +41 -0
- data/lib/templates/erb/scaffold/_form.html.erb.tt +80 -0
- data/lib/templates/erb/scaffold/edit.html.erb.tt +18 -0
- data/lib/templates/erb/scaffold/index.html.erb.tt +65 -0
- data/lib/templates/erb/scaffold/new.html.erb.tt +3 -0
- data/lib/templates/erb/scaffold/partial.html.erb.tt +17 -0
- data/lib/templates/erb/scaffold/show.html.erb.tt +56 -0
- data/lib/voidable/hotwire/engine.rb +5 -0
- data/lib/voidable/hotwire/version.rb +1 -1
- metadata +32 -6
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: voidable-hotwire
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kaz Walker
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: railties
|
|
@@ -34,6 +33,35 @@ extra_rdoc_files: []
|
|
|
34
33
|
files:
|
|
35
34
|
- LICENSE.md
|
|
36
35
|
- README.md
|
|
36
|
+
- app/views/devise/confirmations/new.html.erb
|
|
37
|
+
- app/views/devise/passwords/edit.html.erb
|
|
38
|
+
- app/views/devise/passwords/new.html.erb
|
|
39
|
+
- app/views/devise/registrations/edit.html.erb
|
|
40
|
+
- app/views/devise/registrations/new.html.erb
|
|
41
|
+
- app/views/devise/sessions/new.html.erb
|
|
42
|
+
- app/views/devise/shared/_error_messages.html.erb
|
|
43
|
+
- app/views/devise/shared/_links.html.erb
|
|
44
|
+
- app/views/devise/unlocks/new.html.erb
|
|
45
|
+
- config/importmap.rb
|
|
46
|
+
- lib/generators/voidable/devise_views/devise_views_generator.rb
|
|
47
|
+
- lib/generators/voidable/install/install_generator.rb
|
|
48
|
+
- lib/generators/voidable/install/templates/_settings_menu.html.erb
|
|
49
|
+
- lib/generators/voidable/install/templates/application_sidebar.html.erb.tt
|
|
50
|
+
- lib/generators/voidable/install/templates/application_topbar.html.erb.tt
|
|
51
|
+
- lib/generators/voidable/install/templates/initializer.rb.tt
|
|
52
|
+
- lib/generators/voidable/install/templates/settings_controller.rb.tt
|
|
53
|
+
- lib/generators/voidable/install/templates/sidebar.html.erb.tt
|
|
54
|
+
- lib/generators/voidable/install/templates/topbar.html.erb.tt
|
|
55
|
+
- lib/generators/voidable/install/templates/voidable-devise.css
|
|
56
|
+
- lib/generators/voidable/install/templates/voidable-layout-sidebar.css
|
|
57
|
+
- lib/generators/voidable/install/templates/voidable-layout-topbar.css
|
|
58
|
+
- lib/generators/voidable/install/templates/voidable-layout.js
|
|
59
|
+
- lib/templates/erb/scaffold/_form.html.erb.tt
|
|
60
|
+
- lib/templates/erb/scaffold/edit.html.erb.tt
|
|
61
|
+
- lib/templates/erb/scaffold/index.html.erb.tt
|
|
62
|
+
- lib/templates/erb/scaffold/new.html.erb.tt
|
|
63
|
+
- lib/templates/erb/scaffold/partial.html.erb.tt
|
|
64
|
+
- lib/templates/erb/scaffold/show.html.erb.tt
|
|
37
65
|
- lib/voidable/hotwire.rb
|
|
38
66
|
- lib/voidable/hotwire/engine.rb
|
|
39
67
|
- lib/voidable/hotwire/helpers.rb
|
|
@@ -45,7 +73,6 @@ metadata:
|
|
|
45
73
|
homepage_uri: https://voidable.dev
|
|
46
74
|
source_code_uri: https://github.com/VoidableUI/Voidable
|
|
47
75
|
changelog_uri: https://github.com/VoidableUI/Voidable/releases
|
|
48
|
-
post_install_message:
|
|
49
76
|
rdoc_options: []
|
|
50
77
|
require_paths:
|
|
51
78
|
- lib
|
|
@@ -60,8 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
60
87
|
- !ruby/object:Gem::Version
|
|
61
88
|
version: '0'
|
|
62
89
|
requirements: []
|
|
63
|
-
rubygems_version:
|
|
64
|
-
signing_key:
|
|
90
|
+
rubygems_version: 4.0.6
|
|
65
91
|
specification_version: 4
|
|
66
92
|
summary: Rails integration for Voidable UI web components with Hotwire
|
|
67
93
|
test_files: []
|