devise_materialize 0.0.5.alpha → 1.0.0.rc1
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/Gemfile.lock +1 -1
- data/lib/devise_materialize/version.rb +1 -1
- data/lib/generators/devise_materialize/install_generator.rb +8 -7
- data/lib/generators/templates/assets/javascripts/init_form_materialize.coffee +16 -0
- data/lib/generators/templates/erb/default/confirmations/new.html.erb +36 -0
- data/lib/generators/templates/erb/default/mailer/confirmation_instructions.html.erb +37 -0
- data/lib/generators/templates/erb/default/mailer/password_change.html.erb +39 -0
- data/lib/generators/templates/erb/default/mailer/reset_password_instructions.html.erb +46 -0
- data/lib/generators/templates/erb/default/mailer/unlock_instructions.html.erb +43 -0
- data/lib/generators/templates/erb/default/passwords/edit.html.erb +48 -0
- data/lib/generators/templates/erb/default/passwords/new.html.erb +36 -0
- data/lib/generators/templates/erb/default/registrations/edit.html.erb +58 -0
- data/lib/generators/templates/erb/default/registrations/new.html.erb +50 -0
- data/lib/generators/templates/erb/default/sessions/new.html.erb +45 -0
- data/lib/generators/templates/erb/default/shared/_links.html.erb +40 -0
- data/lib/generators/templates/erb/default/unlocks/new.html.erb +36 -0
- data/lib/generators/templates/erb/simple_form/confirmations/new.html.erb +1 -1
- data/lib/generators/templates/erb/simple_form/passwords/edit.html.erb +1 -1
- data/lib/generators/templates/erb/simple_form/passwords/new.html.erb +1 -1
- data/lib/generators/templates/erb/simple_form/registrations/edit.html.erb +1 -1
- data/lib/generators/templates/erb/simple_form/registrations/new.html.erb +1 -1
- data/lib/generators/templates/erb/simple_form/sessions/new.html.erb +1 -1
- data/lib/generators/templates/erb/simple_form/unlocks/new.html.erb +1 -1
- data/lib/generators/templates/haml/default/confirmations/new.html.haml +23 -0
- data/lib/generators/templates/haml/default/mailer/confirmation_instructions.html.haml +30 -0
- data/lib/generators/templates/haml/default/mailer/password_change.html.haml +31 -0
- data/lib/generators/templates/haml/default/mailer/reset_password_instructions.html.haml +37 -0
- data/lib/generators/templates/haml/default/mailer/unlock_instructions.html.haml +34 -0
- data/lib/generators/templates/haml/default/passwords/edit.html.haml +32 -0
- data/lib/generators/templates/haml/default/passwords/new.html.haml +23 -0
- data/lib/generators/templates/haml/default/registrations/edit.html.haml +40 -0
- data/lib/generators/templates/haml/default/registrations/new.html.haml +34 -0
- data/lib/generators/templates/haml/default/sessions/new.html.haml +30 -0
- data/lib/generators/templates/haml/default/shared/_links.html.haml +34 -0
- data/lib/generators/templates/haml/default/unlocks/new.html.haml +23 -0
- data/lib/generators/templates/haml/simple_form/confirmations/new.html.haml +1 -1
- data/lib/generators/templates/haml/simple_form/passwords/edit.html.haml +1 -1
- data/lib/generators/templates/haml/simple_form/passwords/new.html.haml +1 -1
- data/lib/generators/templates/haml/simple_form/registrations/edit.html.haml +1 -1
- data/lib/generators/templates/haml/simple_form/registrations/new.html.haml +1 -1
- data/lib/generators/templates/haml/simple_form/sessions/new.html.haml +1 -1
- data/lib/generators/templates/haml/simple_form/unlocks/new.html.haml +1 -1
- data/lib/generators/templates/slim/default/confirmations/new.html.slim +24 -0
- data/lib/generators/templates/slim/default/mailer/confirmation_instructions.html.slim +30 -0
- data/lib/generators/templates/slim/default/mailer/password_change.html.slim +31 -0
- data/lib/generators/templates/slim/default/mailer/reset_password_instructions.html.slim +38 -0
- data/lib/generators/templates/slim/default/mailer/unlock_instructions.html.slim +35 -0
- data/lib/generators/templates/slim/default/passwords/edit.html.slim +33 -0
- data/lib/generators/templates/slim/default/passwords/new.html.slim +24 -0
- data/lib/generators/templates/slim/default/registrations/edit.html.slim +41 -0
- data/lib/generators/templates/slim/default/registrations/new.html.slim +35 -0
- data/lib/generators/templates/slim/default/sessions/new.html.slim +31 -0
- data/lib/generators/templates/slim/default/shared/_links.html.slim +29 -0
- data/lib/generators/templates/slim/default/unlocks/new.html.slim +24 -0
- data/lib/generators/templates/slim/simple_form/confirmations/new.html.slim +1 -1
- data/lib/generators/templates/slim/simple_form/passwords/edit.html.slim +1 -1
- data/lib/generators/templates/slim/simple_form/passwords/new.html.slim +1 -1
- data/lib/generators/templates/slim/simple_form/registrations/edit.html.slim +1 -1
- data/lib/generators/templates/slim/simple_form/registrations/new.html.slim +1 -1
- data/lib/generators/templates/slim/simple_form/sessions/new.html.slim +1 -1
- data/lib/generators/templates/slim/simple_form/unlocks/new.html.slim +1 -1
- data/test/lib/install_generator_test.rb +1 -0
- metadata +3 -4
- data/test/rails_app/log/test.log +0 -288
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.row.login-form
|
|
2
|
+
.col.s12
|
|
3
|
+
.card.hoverable
|
|
4
|
+
.card-content
|
|
5
|
+
span.card-title.center Log In
|
|
6
|
+
.divider
|
|
7
|
+
= form_for resource, as: resource_name,
|
|
8
|
+
| url: session_path(resource_name) do |f|
|
|
9
|
+
- if devise_error_messages? || alert
|
|
10
|
+
.form-errors.red.lighten-1
|
|
11
|
+
= devise_error_messages!
|
|
12
|
+
= alert
|
|
13
|
+
.form-inputs.row
|
|
14
|
+
.input-field.col.s12
|
|
15
|
+
i.material-icons.prefix email
|
|
16
|
+
= f.email_field :email, required: true, autofocus: true
|
|
17
|
+
= f.label :email
|
|
18
|
+
.input-field.col.s12
|
|
19
|
+
i.material-icons.prefix lock
|
|
20
|
+
= f.password_field :password, required: true, autocomplete: "off"
|
|
21
|
+
= f.label :password
|
|
22
|
+
- if devise_mapping.rememberable?
|
|
23
|
+
p
|
|
24
|
+
= f.check_box :remember_me
|
|
25
|
+
= f.label :remember_me
|
|
26
|
+
.form-actions.center
|
|
27
|
+
= f.button :submit, "Log In", class: "btn waves-effect"
|
|
28
|
+
.card-action
|
|
29
|
+
.devise-links
|
|
30
|
+
= render "<%= file_name %>/shared/links"
|
|
31
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
- if controller_name != 'sessions' && !current_user.present?
|
|
2
|
+
| Already a Member?
|
|
3
|
+
| \#{link_to "Log In", new_session_path(resource_name)}
|
|
4
|
+
br/
|
|
5
|
+
- if devise_mapping.registerable? && controller_name != 'registrations'
|
|
6
|
+
| Not A Member?
|
|
7
|
+
| \#{link_to "Sign Up", new_registration_path(resource_name)}
|
|
8
|
+
br/
|
|
9
|
+
- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations'
|
|
10
|
+
| Forgot
|
|
11
|
+
| \#{link_to "Password?", new_password_path(resource_name)}
|
|
12
|
+
br/
|
|
13
|
+
- if devise_mapping.confirmable? && controller_name != 'confirmations'
|
|
14
|
+
= link_to "Didn't Receive Confirmation Instructions?",
|
|
15
|
+
| new_confirmation_path(resource_name)
|
|
16
|
+
br/
|
|
17
|
+
- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks'
|
|
18
|
+
= link_to "Didn't Receive Unlock Instructions?",
|
|
19
|
+
| new_unlock_path(resource_name)
|
|
20
|
+
br/
|
|
21
|
+
- if devise_mapping.omniauthable?
|
|
22
|
+
- resource_class.omniauth_providers.each do |provider|
|
|
23
|
+
= link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}",
|
|
24
|
+
| omniauth_authorize_path(resource_name, provider)
|
|
25
|
+
- if controller_name == 'registrations' && current_user.present?
|
|
26
|
+
= link_to "Cancel My Account", registration_path(resource_name),
|
|
27
|
+
| data: { confirm: "Are You Sure you want to Delete Your Account?",
|
|
28
|
+
| method: :delete }, class: "btn waves-effect red"
|
|
29
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.row.login-form
|
|
2
|
+
.col.s12.offset-m3
|
|
3
|
+
.card.hoverable
|
|
4
|
+
.card-content
|
|
5
|
+
span.card-title.center Resend Unlock Instructions
|
|
6
|
+
.divider
|
|
7
|
+
= form_for resource, as: resource_name, url: unlock_path(resource_name),
|
|
8
|
+
| html: { method: :post } do |f|
|
|
9
|
+
- if devise_error_messages? || alert
|
|
10
|
+
.form-errors.red.lighten-1
|
|
11
|
+
= devise_error_messages!
|
|
12
|
+
= alert
|
|
13
|
+
.form-inputs.row
|
|
14
|
+
.input-field.col.s12
|
|
15
|
+
i.material-icons.prefix email
|
|
16
|
+
= f.email_field :email, autofocus: true, required: true
|
|
17
|
+
= f.label :email
|
|
18
|
+
.form-actions.center
|
|
19
|
+
= f.button :submit, "Resend Unlock Instructions",
|
|
20
|
+
| class: "btn waves-effect"
|
|
21
|
+
.card-action
|
|
22
|
+
.devise-links
|
|
23
|
+
= render "<%= file_name %>/shared/links"
|
|
24
|
+
|
|
@@ -71,6 +71,7 @@ class InstallGeneratorTest < Rails::Generators::TestCase
|
|
|
71
71
|
view_engine = options[:view_engine] || "html.erb"
|
|
72
72
|
|
|
73
73
|
assert_file "app/assets/stylesheets/devise.scss"
|
|
74
|
+
assert_file "app/assets/javascripts/init_form_materialize.coffee"
|
|
74
75
|
assert_file "app/helpers/devise_helper.rb"
|
|
75
76
|
assert_file "app/views/#{scope}/confirmations/new.#{view_engine}"
|
|
76
77
|
assert_file(
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise_materialize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 1.0.0.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christopher Pezza
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -56,6 +56,7 @@ files:
|
|
|
56
56
|
- lib/devise_materialize.rb
|
|
57
57
|
- lib/devise_materialize/version.rb
|
|
58
58
|
- lib/generators/devise_materialize/install_generator.rb
|
|
59
|
+
- lib/generators/templates/assets/javascripts/init_form_materialize.coffee
|
|
59
60
|
- lib/generators/templates/assets/stylesheets/devise.scss
|
|
60
61
|
- lib/generators/templates/erb/default/confirmations/new.html.erb
|
|
61
62
|
- lib/generators/templates/erb/default/mailer/confirmation_instructions.html.erb
|
|
@@ -154,7 +155,6 @@ files:
|
|
|
154
155
|
- test/rails_app/config/initializers/secret_token.rb
|
|
155
156
|
- test/rails_app/config/initializers/session_store.rb
|
|
156
157
|
- test/rails_app/config/routes.rb
|
|
157
|
-
- test/rails_app/log/test.log
|
|
158
158
|
- test/rails_app/public/404.html
|
|
159
159
|
- test/rails_app/public/422.html
|
|
160
160
|
- test/rails_app/public/500.html
|
|
@@ -209,7 +209,6 @@ test_files:
|
|
|
209
209
|
- test/rails_app/config/initializers/secret_token.rb
|
|
210
210
|
- test/rails_app/config/initializers/session_store.rb
|
|
211
211
|
- test/rails_app/config/routes.rb
|
|
212
|
-
- test/rails_app/log/test.log
|
|
213
212
|
- test/rails_app/public/404.html
|
|
214
213
|
- test/rails_app/public/422.html
|
|
215
214
|
- test/rails_app/public/500.html
|
data/test/rails_app/log/test.log
DELETED
|
@@ -1,288 +0,0 @@
|
|
|
1
|
-
-------------------------------------------------------
|
|
2
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
3
|
-
-------------------------------------------------------
|
|
4
|
-
-------------------------------------------------------
|
|
5
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
6
|
-
-------------------------------------------------------
|
|
7
|
-
-------------------------------------------------------
|
|
8
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
9
|
-
-------------------------------------------------------
|
|
10
|
-
-------------------------------------------------------
|
|
11
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
12
|
-
-------------------------------------------------------
|
|
13
|
-
-------------------------------------------------------
|
|
14
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
15
|
-
-------------------------------------------------------
|
|
16
|
-
-------------------------------------------------------
|
|
17
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
18
|
-
-------------------------------------------------------
|
|
19
|
-
-------------------------------------------------------
|
|
20
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
21
|
-
-------------------------------------------------------
|
|
22
|
-
-------------------------------------------------------
|
|
23
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
24
|
-
-------------------------------------------------------
|
|
25
|
-
-------------------------------------------------------
|
|
26
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
27
|
-
-------------------------------------------------------
|
|
28
|
-
-------------------------------------------------------
|
|
29
|
-
InstallGeneratorTest: test_assert_all_files_get_created
|
|
30
|
-
-------------------------------------------------------
|
|
31
|
-
-----------------------------------------------------------------
|
|
32
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
33
|
-
-----------------------------------------------------------------
|
|
34
|
-
----------------------------------------------------------------
|
|
35
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
36
|
-
----------------------------------------------------------------
|
|
37
|
-
-----------------------------------------------------------------
|
|
38
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
39
|
-
-----------------------------------------------------------------
|
|
40
|
-
----------------------------------------------------------------
|
|
41
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
42
|
-
----------------------------------------------------------------
|
|
43
|
-
----------------------------------------------------------------
|
|
44
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
45
|
-
----------------------------------------------------------------
|
|
46
|
-
----------------------------------------------------------------
|
|
47
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
48
|
-
----------------------------------------------------------------
|
|
49
|
-
-----------------------------------------------------------------
|
|
50
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
51
|
-
-----------------------------------------------------------------
|
|
52
|
-
----------------------------------------------------------------
|
|
53
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
54
|
-
----------------------------------------------------------------
|
|
55
|
-
----------------------------------------------------------------
|
|
56
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
57
|
-
----------------------------------------------------------------
|
|
58
|
-
-----------------------------------------------------------------
|
|
59
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
60
|
-
-----------------------------------------------------------------
|
|
61
|
-
-----------------------------------------------------------------
|
|
62
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
63
|
-
-----------------------------------------------------------------
|
|
64
|
-
----------------------------------------------------------------
|
|
65
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
66
|
-
----------------------------------------------------------------
|
|
67
|
-
----------------------------------------------------------------
|
|
68
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
69
|
-
----------------------------------------------------------------
|
|
70
|
-
----------------------------------------------------------------
|
|
71
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
72
|
-
----------------------------------------------------------------
|
|
73
|
-
----------------------------------------------------------------
|
|
74
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
75
|
-
----------------------------------------------------------------
|
|
76
|
-
-----------------------------------------------------------------
|
|
77
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
78
|
-
-----------------------------------------------------------------
|
|
79
|
-
----------------------------------------------------------------
|
|
80
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
81
|
-
----------------------------------------------------------------
|
|
82
|
-
-----------------------------------------------------------------
|
|
83
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
84
|
-
-----------------------------------------------------------------
|
|
85
|
-
----------------------------------------------------------------
|
|
86
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
87
|
-
----------------------------------------------------------------
|
|
88
|
-
----------------------------------------------------------------
|
|
89
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
90
|
-
----------------------------------------------------------------
|
|
91
|
-
-----------------------------------------------------------------
|
|
92
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
93
|
-
-----------------------------------------------------------------
|
|
94
|
-
----------------------------------------------------------------
|
|
95
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
96
|
-
----------------------------------------------------------------
|
|
97
|
-
-----------------------------------------------------------------
|
|
98
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
99
|
-
-----------------------------------------------------------------
|
|
100
|
-
----------------------------------------------------------------
|
|
101
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
102
|
-
----------------------------------------------------------------
|
|
103
|
-
----------------------------------------------------------------
|
|
104
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
105
|
-
----------------------------------------------------------------
|
|
106
|
-
-----------------------------------------------------------------
|
|
107
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
108
|
-
-----------------------------------------------------------------
|
|
109
|
-
----------------------------------------------------------------
|
|
110
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
111
|
-
----------------------------------------------------------------
|
|
112
|
-
----------------------------------------------------------------
|
|
113
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
114
|
-
----------------------------------------------------------------
|
|
115
|
-
----------------------------------------------------------------
|
|
116
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
117
|
-
----------------------------------------------------------------
|
|
118
|
-
-----------------------------------------------------------------
|
|
119
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
120
|
-
-----------------------------------------------------------------
|
|
121
|
-
----------------------------------------------------------------
|
|
122
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
123
|
-
----------------------------------------------------------------
|
|
124
|
-
-----------------------------------------------------------------
|
|
125
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
126
|
-
-----------------------------------------------------------------
|
|
127
|
-
----------------------------------------------------------------
|
|
128
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
129
|
-
----------------------------------------------------------------
|
|
130
|
-
----------------------------------------------------------------
|
|
131
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
132
|
-
----------------------------------------------------------------
|
|
133
|
-
----------------------------------------------------------------
|
|
134
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_haml
|
|
135
|
-
----------------------------------------------------------------
|
|
136
|
-
----------------------------------------------------------------
|
|
137
|
-
InstallGeneratorTest: test_assert_all_files_get_created_for_slim
|
|
138
|
-
----------------------------------------------------------------
|
|
139
|
-
-----------------------------------------------------------------
|
|
140
|
-
InstallGeneratorTest: test_assert_all_files_get_created_no_params
|
|
141
|
-
-----------------------------------------------------------------
|
|
142
|
-
----------------------------------------------------------------------------
|
|
143
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
144
|
-
----------------------------------------------------------------------------
|
|
145
|
-
----------------------------------------------------------------------------------
|
|
146
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_no_params
|
|
147
|
-
----------------------------------------------------------------------------------
|
|
148
|
-
-----------------------------------------------------------------------------
|
|
149
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml
|
|
150
|
-
-----------------------------------------------------------------------------
|
|
151
|
-
-----------------------------------------------------------------------------------
|
|
152
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_no_params
|
|
153
|
-
-----------------------------------------------------------------------------------
|
|
154
|
-
------------------------------------------------------------------------------
|
|
155
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim
|
|
156
|
-
------------------------------------------------------------------------------
|
|
157
|
-
-------------------------------------------------------------------------------
|
|
158
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml
|
|
159
|
-
-------------------------------------------------------------------------------
|
|
160
|
-
----------------------------------------------------------------------------
|
|
161
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
162
|
-
----------------------------------------------------------------------------
|
|
163
|
-
-------------------------------------------------------------------------------
|
|
164
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml
|
|
165
|
-
-------------------------------------------------------------------------------
|
|
166
|
-
-----------------------------------------------------------------------------
|
|
167
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml
|
|
168
|
-
-----------------------------------------------------------------------------
|
|
169
|
-
-----------------------------------------------------------------------------------
|
|
170
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_no_params
|
|
171
|
-
-----------------------------------------------------------------------------------
|
|
172
|
-
----------------------------------------------------------------------------
|
|
173
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
174
|
-
----------------------------------------------------------------------------
|
|
175
|
-
------------------------------------------------------------------------------
|
|
176
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim
|
|
177
|
-
------------------------------------------------------------------------------
|
|
178
|
-
----------------------------------------------------------------------------------
|
|
179
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_no_params
|
|
180
|
-
----------------------------------------------------------------------------------
|
|
181
|
-
------------------------------------------------------------------------------
|
|
182
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim
|
|
183
|
-
------------------------------------------------------------------------------
|
|
184
|
-
----------------------------------------------------------------------------------
|
|
185
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_no_params
|
|
186
|
-
----------------------------------------------------------------------------------
|
|
187
|
-
-----------------------------------------------------------------------------
|
|
188
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml
|
|
189
|
-
-----------------------------------------------------------------------------
|
|
190
|
-
-------------------------------------------------------------------------------
|
|
191
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml
|
|
192
|
-
-------------------------------------------------------------------------------
|
|
193
|
-
----------------------------------------------------------------------------
|
|
194
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
195
|
-
----------------------------------------------------------------------------
|
|
196
|
-
-----------------------------------------------------------------------------------
|
|
197
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_no_params
|
|
198
|
-
-----------------------------------------------------------------------------------
|
|
199
|
-
----------------------------------------------------------------------------
|
|
200
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
201
|
-
----------------------------------------------------------------------------
|
|
202
|
-
-----------------------------------------------------------------------------------
|
|
203
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_no_params
|
|
204
|
-
-----------------------------------------------------------------------------------
|
|
205
|
-
-----------------------------------------------------------------------------
|
|
206
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml
|
|
207
|
-
-----------------------------------------------------------------------------
|
|
208
|
-
----------------------------------------------------------------------------------
|
|
209
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_no_params
|
|
210
|
-
----------------------------------------------------------------------------------
|
|
211
|
-
------------------------------------------------------------------------------
|
|
212
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim
|
|
213
|
-
------------------------------------------------------------------------------
|
|
214
|
-
-------------------------------------------------------------------------------
|
|
215
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml
|
|
216
|
-
-------------------------------------------------------------------------------
|
|
217
|
-
--------------------------------------------------------------------------------------------
|
|
218
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim_and_simple_form
|
|
219
|
-
--------------------------------------------------------------------------------------------
|
|
220
|
-
------------------------------------------------------------------------------
|
|
221
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim
|
|
222
|
-
------------------------------------------------------------------------------
|
|
223
|
-
----------------------------------------------------------------------------------
|
|
224
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_no_params
|
|
225
|
-
----------------------------------------------------------------------------------
|
|
226
|
-
-----------------------------------------------------------------------------
|
|
227
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml
|
|
228
|
-
-----------------------------------------------------------------------------
|
|
229
|
-
-----------------------------------------------------------------------------------
|
|
230
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_no_params
|
|
231
|
-
-----------------------------------------------------------------------------------
|
|
232
|
-
-----------------------------------------------------------------------------------------------
|
|
233
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml_and_simple_form
|
|
234
|
-
-----------------------------------------------------------------------------------------------
|
|
235
|
-
----------------------------------------------------------------------------------------------
|
|
236
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim_and_simple_form
|
|
237
|
-
----------------------------------------------------------------------------------------------
|
|
238
|
-
-------------------------------------------------------------------------------------
|
|
239
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_simple_form
|
|
240
|
-
-------------------------------------------------------------------------------------
|
|
241
|
-
----------------------------------------------------------------------------------------
|
|
242
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_and_simple_form
|
|
243
|
-
----------------------------------------------------------------------------------------
|
|
244
|
-
---------------------------------------------------------------------------------------------
|
|
245
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml_and_simple_form
|
|
246
|
-
---------------------------------------------------------------------------------------------
|
|
247
|
-
-------------------------------------------------------------------------------
|
|
248
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml
|
|
249
|
-
-------------------------------------------------------------------------------
|
|
250
|
-
----------------------------------------------------------------------------
|
|
251
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
252
|
-
----------------------------------------------------------------------------
|
|
253
|
-
-------------------------------------------------------------------------------------
|
|
254
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_simple_form
|
|
255
|
-
-------------------------------------------------------------------------------------
|
|
256
|
-
---------------------------------------------------------------------------------------------
|
|
257
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml_and_simple_form
|
|
258
|
-
---------------------------------------------------------------------------------------------
|
|
259
|
-
------------------------------------------------------------------------------
|
|
260
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim
|
|
261
|
-
------------------------------------------------------------------------------
|
|
262
|
-
----------------------------------------------------------------------------
|
|
263
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim
|
|
264
|
-
----------------------------------------------------------------------------
|
|
265
|
-
----------------------------------------------------------------------------------------
|
|
266
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_and_simple_form
|
|
267
|
-
----------------------------------------------------------------------------------------
|
|
268
|
-
--------------------------------------------------------------------------------------------
|
|
269
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_wil_slim_and_simple_form
|
|
270
|
-
--------------------------------------------------------------------------------------------
|
|
271
|
-
----------------------------------------------------------------------------------------------
|
|
272
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_wil_slim_and_simple_form
|
|
273
|
-
----------------------------------------------------------------------------------------------
|
|
274
|
-
-------------------------------------------------------------------------------
|
|
275
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml
|
|
276
|
-
-------------------------------------------------------------------------------
|
|
277
|
-
----------------------------------------------------------------------------------
|
|
278
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_no_params
|
|
279
|
-
----------------------------------------------------------------------------------
|
|
280
|
-
-----------------------------------------------------------------------------------------------
|
|
281
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_with_haml_and_simple_form
|
|
282
|
-
-----------------------------------------------------------------------------------------------
|
|
283
|
-
-----------------------------------------------------------------------------
|
|
284
|
-
InstallGeneratorTest: test_assert_files_created_for_users_namespace_with_haml
|
|
285
|
-
-----------------------------------------------------------------------------
|
|
286
|
-
-----------------------------------------------------------------------------------
|
|
287
|
-
InstallGeneratorTest: test_assert_files_created_for_default_namespace_and_no_params
|
|
288
|
-
-----------------------------------------------------------------------------------
|