authentication-zero 2.3.0 → 2.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ecdb3e457838bc86f570bc73f0d7766cb68743b04fc3eebbecd20c3fce0ed836
4
- data.tar.gz: 9581bcee36b253a0f0811df40d226b588d0c2b5535ffd6c1993ce98ef1d64b61
3
+ metadata.gz: de45127fd253c1efc38817d1279aa741ab504e362b219707f15126f6c80180d8
4
+ data.tar.gz: 7fa0b3a4dbfb2c2ab3a4eb59f0f681aa9b43edc93ba713d465256e5aa50dc466
5
5
  SHA512:
6
- metadata.gz: 3acf56145974e3fdcdf9edbc5524be60c2dcccdc44787fe3f97cc77f367fcdb6f40984f6c8a7ecf1e35e2228037813516609326fe0951c74a7f2be2f0dce9969
7
- data.tar.gz: 190228711ae47a0960233cb61ceb6273a6698981f379aca58afb79d9aec0182bc9c122606cec2d68c77fd9fad64474ed27d55b894f3306d9f424b31a8f50a2fd
6
+ metadata.gz: 02a00d183b33d8f262d509d5c61235f68cc0a7c4796e04efafdb8a60154baedfeb8d5b6057ec41cb64537ec6fdcf42ac3e71edeac0d8101ceaa32148a65ec29d
7
+ data.tar.gz: 93f9d71f746da6de64e9d4059ec672e63ccaacbabed082f4e5118c658f9173670f729c5ffa01518431d5b40f545dc8288c252e96470cd9fea320dfbb16eae6d1
data/CHANGELOG.md CHANGED
@@ -0,0 +1,5 @@
1
+ ## Rails 2.3.0 (February 26, 2022) ##
2
+
3
+ * Implemented sudo
4
+ * Destroy sessions after change password
5
+ * On system tests, assert_current_path in sign_in
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- authentication-zero (2.3.0)
4
+ authentication-zero (2.3.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,3 +1,3 @@
1
1
  module AuthenticationZero
2
- VERSION = "2.3.0"
2
+ VERSION = "2.3.1"
3
3
  end
@@ -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 "#{template_engine}", "app/views"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authentication-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nixon