sync_attr_with_auth0 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4238ec4aec0424dcf9d6f2c90d2323658ded3f02
4
- data.tar.gz: 3ceb41dc971ae1a1507f337f25a5b53e38b2c962
3
+ metadata.gz: cb993d996ecc20e533a8c370d41bb08fd3fee41f
4
+ data.tar.gz: 3f07189d3678c7541da8bfb562a6dbcc9a317912
5
5
  SHA512:
6
- metadata.gz: e46c31f066dd85b03fce4120127eed2084ed2776a859d7419a67e415ed0dcba02f64bafa1bccdfe35366ca4f58c5cf2098604cba99bfe54642d7de380b6135d2
7
- data.tar.gz: 05f9da7d78a48f7ece1ef5a863a5d98ce504b00cd1a0fa8a6a97374e9c27312d9861bf1e5fd021611117aad9f29c60a989f1199abf639bc37ff3ca9ff9a167b4
6
+ metadata.gz: c4c2c511c044fd211eb92bf486ac0c7ae1aec9796a3ef0f570781eeaf0450a4f8258c7e5cb3746ebbb245b7656bf596504d2f5c403b213e1fd0962570d28f078
7
+ data.tar.gz: 74a731d5819dd7dfbf3c94bfaab0851523361e1cd0e61153bdfec8874d270cbc5849a8263a5e1db7fb9d65b23f9517f5c55cd95546ef180301bcb7ac0e646e5d
@@ -1,7 +1,7 @@
1
1
  module SyncAttrWithAuth0
2
2
  module Adapters
3
3
  module ActiveRecord
4
- module Sync
4
+ module Auth0Sync
5
5
 
6
6
  def sync_password_with_auth0?
7
7
  !!(auth0_attributes_to_sync.index(auth0_sync_configuration.password_attribute))
@@ -1,5 +1,5 @@
1
1
  require 'sync_attr_with_auth0/adapters/active_record/validation'
2
- require 'sync_attr_with_auth0/adapters/active_record/sync'
2
+ require 'sync_attr_with_auth0/adapters/active_record/auth0_sync'
3
3
 
4
4
  module SyncAttrWithAuth0
5
5
  module Adapters
@@ -7,7 +7,7 @@ module SyncAttrWithAuth0
7
7
  extend ::ActiveSupport::Concern
8
8
 
9
9
  include SyncAttrWithAuth0::Adapters::ActiveRecord::Validation
10
- include SyncAttrWithAuth0::Adapters::ActiveRecord::Sync
10
+ include SyncAttrWithAuth0::Adapters::ActiveRecord::Auth0Sync
11
11
 
12
12
  require "uuidtools"
13
13
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sync_attr_with_auth0
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick McGraw
@@ -146,7 +146,7 @@ extra_rdoc_files: []
146
146
  files:
147
147
  - lib/sync_attr_with_auth0.rb
148
148
  - lib/sync_attr_with_auth0/adapters/active_record.rb
149
- - lib/sync_attr_with_auth0/adapters/active_record/sync.rb
149
+ - lib/sync_attr_with_auth0/adapters/active_record/auth0_sync.rb
150
150
  - lib/sync_attr_with_auth0/adapters/active_record/validation.rb
151
151
  - lib/sync_attr_with_auth0/auth0.rb
152
152
  - lib/sync_attr_with_auth0/configuration.rb