authentication-zero 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/lib/authentication_zero/version.rb +1 -1
- data/lib/generators/authentication/authentication_generator.rb +1 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de45127fd253c1efc38817d1279aa741ab504e362b219707f15126f6c80180d8
|
4
|
+
data.tar.gz: 7fa0b3a4dbfb2c2ab3a4eb59f0f681aa9b43edc93ba713d465256e5aa50dc466
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02a00d183b33d8f262d509d5c61235f68cc0a7c4796e04efafdb8a60154baedfeb8d5b6057ec41cb64537ec6fdcf42ac3e71edeac0d8101ceaa32148a65ec29d
|
7
|
+
data.tar.gz: 93f9d71f746da6de64e9d4059ec672e63ccaacbabed082f4e5118c658f9173670f729c5ffa01518431d5b40f545dc8288c252e96470cd9fea320dfbb16eae6d1
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -12,7 +12,6 @@ class AuthenticationGenerator < Rails::Generators::NamedBase
|
|
12
12
|
class_option :system_tests, type: :string, desc: "Skip system test files"
|
13
13
|
|
14
14
|
class_option :skip_routes, type: :boolean, default: false
|
15
|
-
class_option :template_engine, type: :string, desc: "Template engine to be invoked"
|
16
15
|
|
17
16
|
source_root File.expand_path("templates", __dir__)
|
18
17
|
|
@@ -93,7 +92,7 @@ class AuthenticationGenerator < Rails::Generators::NamedBase
|
|
93
92
|
directory "erb/identity_mailer", "app/views/identity_mailer"
|
94
93
|
directory "erb/session_mailer", "app/views/session_mailer"
|
95
94
|
else
|
96
|
-
directory "
|
95
|
+
directory "erb", "app/views"
|
97
96
|
end
|
98
97
|
end
|
99
98
|
|
@@ -127,10 +126,6 @@ class AuthenticationGenerator < Rails::Generators::NamedBase
|
|
127
126
|
options.api ? "api" : "html"
|
128
127
|
end
|
129
128
|
|
130
|
-
def template_engine
|
131
|
-
options.template_engine
|
132
|
-
end
|
133
|
-
|
134
129
|
def test_framework
|
135
130
|
options.test_framework
|
136
131
|
end
|