devise-foundation-views 0.1.1 → 1.0.1
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 +5 -5
- data/.github/workflows/ci.yml +76 -0
- data/.gitignore +32 -3
- data/.rspec +1 -0
- data/.rubocop.yml +44 -0
- data/CHANGELOG.md +76 -0
- data/CODE_OF_CONDUCT.md +9 -0
- data/Gemfile +9 -2
- data/README.md +102 -25
- data/Rakefile +6 -2
- data/UPGRADE_GUIDE.md +87 -0
- data/app/assets/stylesheets/devise_foundation_layout.css +49 -0
- data/app/assets/stylesheets/devise_foundation_views.css +53 -0
- data/app/assets/stylesheets/devise_foundation_views_less.less +47 -8
- data/app/assets/stylesheets/devise_foundation_views_scss.scss +48 -8
- data/app/views/devise/confirmations/new.html.erb +18 -25
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -10
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -14
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -12
- data/app/views/devise/passwords/edit.html.erb +25 -27
- data/app/views/devise/passwords/new.html.erb +16 -23
- data/app/views/devise/registrations/edit.html.erb +51 -35
- data/app/views/devise/registrations/new.html.erb +29 -29
- data/app/views/devise/sessions/new.html.erb +32 -30
- data/app/views/devise/shared/_error_messages.html.erb +17 -0
- data/app/views/devise/shared/_foundation_layout.html.erb +12 -0
- data/app/views/devise/shared/_links.html.erb +22 -20
- data/app/views/devise/unlocks/new.html.erb +16 -23
- data/app/views/devise_haml/confirmations/new.html.haml +10 -15
- data/app/views/devise_haml/mailer/confirmation_instructions.html.haml +3 -3
- data/app/views/devise_haml/mailer/reset_password_instructions.html.haml +5 -5
- data/app/views/devise_haml/mailer/unlock_instructions.html.haml +4 -4
- data/app/views/devise_haml/passwords/edit.html.haml +16 -17
- data/app/views/devise_haml/passwords/new.html.haml +10 -14
- data/app/views/devise_haml/registrations/edit.html.haml +32 -23
- data/app/views/devise_haml/registrations/new.html.haml +18 -18
- data/app/views/devise_haml/sessions/new.html.haml +20 -20
- data/app/views/devise_haml/shared/_error_messages.html.haml +9 -0
- data/app/views/devise_haml/shared/_foundation_layout.html.haml +7 -0
- data/app/views/devise_haml/shared/_links.html.haml +20 -19
- data/app/views/devise_haml/unlocks/new.html.haml +10 -14
- data/app/views/devise_slim/confirmations/new.html.slim +10 -14
- data/app/views/devise_slim/mailer/confirmation_instructions.html.slim +3 -4
- data/app/views/devise_slim/mailer/reset_password_instructions.html.slim +5 -6
- data/app/views/devise_slim/mailer/unlock_instructions.html.slim +4 -4
- data/app/views/devise_slim/passwords/edit.html.slim +16 -18
- data/app/views/devise_slim/passwords/new.html.slim +10 -14
- data/app/views/devise_slim/registrations/edit.html.slim +32 -24
- data/app/views/devise_slim/registrations/new.html.slim +18 -19
- data/app/views/devise_slim/sessions/new.html.slim +20 -20
- data/app/views/devise_slim/shared/_error_messages.html.slim +9 -0
- data/app/views/devise_slim/shared/_foundation_layout.html.slim +7 -0
- data/app/views/devise_slim/shared/_links.html.slim +20 -19
- data/app/views/devise_slim/unlocks/new.html.slim +10 -15
- data/bin/console +8 -0
- data/bin/setup +5 -0
- data/devise-foundation-views.gemspec +28 -17
- data/lib/devise-foundation-views.rb +16 -19
- data/lib/devise_foundation_views_helper.rb +3 -17
- data/lib/devise_layout_helper.rb +18 -0
- data/lib/generators/devise/views/foundation_layout/foundation_layout_generator.rb +34 -0
- data/lib/generators/devise/views/foundation_layout/templates/layouts/devise.html.erb +37 -0
- data/lib/generators/devise/views/foundation_templates/foundation_templates_generator.rb +19 -15
- data/lib/version.rb +3 -1
- data/locales/uk.yml +1 -1
- metadata +108 -19
- data/.travis.yml +0 -8
metadata
CHANGED
|
@@ -1,70 +1,145 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise-foundation-views
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ethi
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: devise
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '4.9'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '6.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '4.9'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '6.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: railties
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '6.0'
|
|
39
|
+
- - "<"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '9.0'
|
|
42
|
+
type: :runtime
|
|
43
|
+
prerelease: false
|
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '6.0'
|
|
49
|
+
- - "<"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '9.0'
|
|
13
52
|
- !ruby/object:Gem::Dependency
|
|
14
53
|
name: bundler
|
|
15
54
|
requirement: !ruby/object:Gem::Requirement
|
|
16
55
|
requirements:
|
|
17
56
|
- - "~>"
|
|
18
57
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
58
|
+
version: '2.4'
|
|
59
|
+
type: :development
|
|
60
|
+
prerelease: false
|
|
61
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - "~>"
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '2.4'
|
|
66
|
+
- !ruby/object:Gem::Dependency
|
|
67
|
+
name: bundler-audit
|
|
68
|
+
requirement: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - "~>"
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '0.9'
|
|
20
73
|
type: :development
|
|
21
74
|
prerelease: false
|
|
22
75
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
76
|
requirements:
|
|
24
77
|
- - "~>"
|
|
25
78
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
79
|
+
version: '0.9'
|
|
27
80
|
- !ruby/object:Gem::Dependency
|
|
28
81
|
name: rake
|
|
29
82
|
requirement: !ruby/object:Gem::Requirement
|
|
30
83
|
requirements:
|
|
31
84
|
- - "~>"
|
|
32
85
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
86
|
+
version: '13.0'
|
|
34
87
|
type: :development
|
|
35
88
|
prerelease: false
|
|
36
89
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
90
|
requirements:
|
|
38
91
|
- - "~>"
|
|
39
92
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
93
|
+
version: '13.0'
|
|
41
94
|
- !ruby/object:Gem::Dependency
|
|
42
95
|
name: rspec
|
|
43
96
|
requirement: !ruby/object:Gem::Requirement
|
|
44
97
|
requirements:
|
|
45
|
-
- - "
|
|
98
|
+
- - "~>"
|
|
46
99
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
100
|
+
version: '3.12'
|
|
48
101
|
type: :development
|
|
49
102
|
prerelease: false
|
|
50
103
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
104
|
requirements:
|
|
52
|
-
- - "
|
|
105
|
+
- - "~>"
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '3.12'
|
|
108
|
+
- !ruby/object:Gem::Dependency
|
|
109
|
+
name: rubocop
|
|
110
|
+
requirement: !ruby/object:Gem::Requirement
|
|
111
|
+
requirements:
|
|
112
|
+
- - "~>"
|
|
113
|
+
- !ruby/object:Gem::Version
|
|
114
|
+
version: '1.50'
|
|
115
|
+
type: :development
|
|
116
|
+
prerelease: false
|
|
117
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
118
|
+
requirements:
|
|
119
|
+
- - "~>"
|
|
53
120
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
55
|
-
description: Devise views
|
|
121
|
+
version: '1.50'
|
|
122
|
+
description: A Rails engine providing Foundation 6 styled Devise views (aligned with
|
|
123
|
+
current Devise templates) in ERB, HAML, and Slim
|
|
56
124
|
email:
|
|
57
125
|
- ethirajsrinivasan@gmail.com
|
|
58
126
|
executables: []
|
|
59
127
|
extensions: []
|
|
60
128
|
extra_rdoc_files: []
|
|
61
129
|
files:
|
|
130
|
+
- ".github/workflows/ci.yml"
|
|
62
131
|
- ".gitignore"
|
|
63
|
-
- ".
|
|
132
|
+
- ".rspec"
|
|
133
|
+
- ".rubocop.yml"
|
|
134
|
+
- CHANGELOG.md
|
|
135
|
+
- CODE_OF_CONDUCT.md
|
|
64
136
|
- Gemfile
|
|
65
137
|
- LICENSE.txt
|
|
66
138
|
- README.md
|
|
67
139
|
- Rakefile
|
|
140
|
+
- UPGRADE_GUIDE.md
|
|
141
|
+
- app/assets/stylesheets/devise_foundation_layout.css
|
|
142
|
+
- app/assets/stylesheets/devise_foundation_views.css
|
|
68
143
|
- app/assets/stylesheets/devise_foundation_views_less.less
|
|
69
144
|
- app/assets/stylesheets/devise_foundation_views_scss.scss
|
|
70
145
|
- app/views/devise/confirmations/new.html.erb
|
|
@@ -76,6 +151,8 @@ files:
|
|
|
76
151
|
- app/views/devise/registrations/edit.html.erb
|
|
77
152
|
- app/views/devise/registrations/new.html.erb
|
|
78
153
|
- app/views/devise/sessions/new.html.erb
|
|
154
|
+
- app/views/devise/shared/_error_messages.html.erb
|
|
155
|
+
- app/views/devise/shared/_foundation_layout.html.erb
|
|
79
156
|
- app/views/devise/shared/_links.html.erb
|
|
80
157
|
- app/views/devise/unlocks/new.html.erb
|
|
81
158
|
- app/views/devise_haml/confirmations/new.html.haml
|
|
@@ -87,6 +164,8 @@ files:
|
|
|
87
164
|
- app/views/devise_haml/registrations/edit.html.haml
|
|
88
165
|
- app/views/devise_haml/registrations/new.html.haml
|
|
89
166
|
- app/views/devise_haml/sessions/new.html.haml
|
|
167
|
+
- app/views/devise_haml/shared/_error_messages.html.haml
|
|
168
|
+
- app/views/devise_haml/shared/_foundation_layout.html.haml
|
|
90
169
|
- app/views/devise_haml/shared/_links.html.haml
|
|
91
170
|
- app/views/devise_haml/unlocks/new.html.haml
|
|
92
171
|
- app/views/devise_slim/confirmations/new.html.slim
|
|
@@ -98,11 +177,18 @@ files:
|
|
|
98
177
|
- app/views/devise_slim/registrations/edit.html.slim
|
|
99
178
|
- app/views/devise_slim/registrations/new.html.slim
|
|
100
179
|
- app/views/devise_slim/sessions/new.html.slim
|
|
180
|
+
- app/views/devise_slim/shared/_error_messages.html.slim
|
|
181
|
+
- app/views/devise_slim/shared/_foundation_layout.html.slim
|
|
101
182
|
- app/views/devise_slim/shared/_links.html.slim
|
|
102
183
|
- app/views/devise_slim/unlocks/new.html.slim
|
|
184
|
+
- bin/console
|
|
185
|
+
- bin/setup
|
|
103
186
|
- devise-foundation-views.gemspec
|
|
104
187
|
- lib/devise-foundation-views.rb
|
|
105
188
|
- lib/devise_foundation_views_helper.rb
|
|
189
|
+
- lib/devise_layout_helper.rb
|
|
190
|
+
- lib/generators/devise/views/foundation_layout/foundation_layout_generator.rb
|
|
191
|
+
- lib/generators/devise/views/foundation_layout/templates/layouts/devise.html.erb
|
|
106
192
|
- lib/generators/devise/views/foundation_templates/foundation_templates_generator.rb
|
|
107
193
|
- lib/generators/devise/views/locale/locale_generator.rb
|
|
108
194
|
- lib/version.rb
|
|
@@ -130,7 +216,12 @@ licenses:
|
|
|
130
216
|
- MIT
|
|
131
217
|
metadata:
|
|
132
218
|
allowed_push_host: https://rubygems.org
|
|
133
|
-
|
|
219
|
+
homepage_uri: https://github.com/ethirajsrinivasan/devise-foundation-views
|
|
220
|
+
source_code_uri: https://github.com/ethirajsrinivasan/devise-foundation-views
|
|
221
|
+
bug_tracker_uri: https://github.com/ethirajsrinivasan/devise-foundation-views/issues
|
|
222
|
+
changelog_uri: https://github.com/ethirajsrinivasan/devise-foundation-views/blob/master/CHANGELOG.md
|
|
223
|
+
documentation_uri: https://github.com/ethirajsrinivasan/devise-foundation-views/blob/master/README.md
|
|
224
|
+
rubygems_mfa_required: 'true'
|
|
134
225
|
rdoc_options: []
|
|
135
226
|
require_paths:
|
|
136
227
|
- lib
|
|
@@ -138,16 +229,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
138
229
|
requirements:
|
|
139
230
|
- - ">="
|
|
140
231
|
- !ruby/object:Gem::Version
|
|
141
|
-
version:
|
|
232
|
+
version: '3.0'
|
|
142
233
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
234
|
requirements:
|
|
144
235
|
- - ">="
|
|
145
236
|
- !ruby/object:Gem::Version
|
|
146
237
|
version: '0'
|
|
147
238
|
requirements: []
|
|
148
|
-
|
|
149
|
-
rubygems_version: 2.4.8
|
|
150
|
-
signing_key:
|
|
239
|
+
rubygems_version: 3.6.7
|
|
151
240
|
specification_version: 4
|
|
152
|
-
summary: Devise views based on
|
|
241
|
+
summary: Devise views based on Foundation 6
|
|
153
242
|
test_files: []
|