voidable-hotwire 0.1.1 → 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/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 +29 -1
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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
|
|
@@ -33,7 +33,35 @@ extra_rdoc_files: []
|
|
|
33
33
|
files:
|
|
34
34
|
- LICENSE.md
|
|
35
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
|
|
36
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
|