action_auth 0.2.7 → 0.2.9

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: f49c1498dcdca45b8440701445af29b364ccbee5c1c8d7c0a1ef4f9fdcbd34f4
4
- data.tar.gz: 174dfea10cbafabf20ac5d74a3f0757579b3b3dd51537e5261c69546b3d09c58
3
+ metadata.gz: 15e0dbb39c116db3c4230dfd773cb2efca4b4b489718b9bcf346be31c5622aca
4
+ data.tar.gz: 8bd290cce05e06f729e1eadabaef9e09801fb525bfd527f2eccf055f50f648ff
5
5
  SHA512:
6
- metadata.gz: 2ddd7429775b10815decc90e8df7a5c6cc2d76e882734d33fc5ab1c3a751476033c7b57a772ed876ff922455b23d40f47dbbad5296bbd1c9e399157dfa87d11b
7
- data.tar.gz: ec39a8fc004d545f0993ff02946882cbd46e57099da40e3834d7ac4bba0466bb55b10cfd58df2e77f16c1edc714a9f7da2660c854353eb30e67d52a83c9ffba1
6
+ metadata.gz: 21cc228bd5ecaeb7fcf5ff95fad43d7dce4b4655d4460dced0378dfcba168054261c743b92ae59430c6d32e8bf115156f439badde073943f9325c7254302ed5e
7
+ data.tar.gz: 1704cce56c19388ebb971ffbac49552a578cb09f67d8285334ebcabb4375647ce701e82a36a33f95b51f79c902e8f6c7d61356572fe753eef06a9d006af92e5f
@@ -5,7 +5,7 @@ module ActionAuth
5
5
  has_many :action_auth_sessions, dependent: :destroy,
6
6
  class_name: "ActionAuth::Session", foreign_key: "action_auth_user_id"
7
7
 
8
- if ActionAuth.configuration&.webauthn_enabled?
8
+ if ActionAuth.configuration.webauthn_enabled?
9
9
  has_many :action_auth_webauthn_credentials, dependent: :destroy,
10
10
  class_name: "ActionAuth::WebauthnCredential", foreign_key: "action_auth_user_id"
11
11
  end
data/config/routes.rb CHANGED
@@ -11,7 +11,7 @@ ActionAuth::Engine.routes.draw do
11
11
  resource :password_reset, only: [:new, :edit, :create, :update]
12
12
  end
13
13
 
14
- if ActionAuth.configuration&.webauthn_enabled?
14
+ if ActionAuth.configuration.webauthn_enabled?
15
15
  resources :webauthn_credentials, only: [:new, :create, :destroy] do
16
16
  post :options, on: :collection, as: 'options_for'
17
17
  end
@@ -1,3 +1,3 @@
1
1
  module ActionAuth
2
- VERSION = "0.2.7"
2
+ VERSION = "0.2.9"
3
3
  end
data/lib/action_auth.rb CHANGED
@@ -4,11 +4,15 @@ require "action_auth/configuration"
4
4
 
5
5
  module ActionAuth
6
6
  class << self
7
- attr_accessor :configuration
7
+ attr_writer :configuration
8
+
9
+ # Initialize configuration with default settings
10
+ def configuration
11
+ @configuration ||= Configuration.new
12
+ end
8
13
 
9
14
  def configure
10
- self.configuration ||= Configuration.new
11
- yield(configuration)
15
+ yield(configuration) if block_given? # Yield only if a block is provided
12
16
  configure_webauthn
13
17
  end
14
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: action_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Kimura