active_model_otp 2.3.2 → 2.3.4

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: 98c3fad16e797e0483e6aeebcdae72e868dd699b82f07400ad0ee9b0261dbd2a
4
- data.tar.gz: 3454ea7c190b0f7f69b50cf617c132a46e1a22f7f5554e4159acec61dd40979f
3
+ metadata.gz: 86157222e30a0969a5b31503f21cdb8ff97f730730e410d8d60952de24b7ce73
4
+ data.tar.gz: ca194498cf0511b0fde17a7280cad6ea588f5da55b77535950f01cbb763fc687
5
5
  SHA512:
6
- metadata.gz: 93a2cec634c0b00a4480598f0dc5fe8bfcf27a9dcc35fb6603eb7bbdfb90fc4f85f94443fbe4b9df9acb6113facd7c14bc12368f0ad15f4df2c0cd5b5498f6bf
7
- data.tar.gz: 232296291239477d07f49ba75bc9db6288a8a3e039f6b1bc93bb3f9ce57d07d8e3624450ebc425e4b7532073f5937506f97f67ec014cc9c6e2312c30aeeb755e
6
+ metadata.gz: 8de2c54142503a070e0fdf942b84fb043e16b0c67dac7acabab1d4d4c7545ab675f50e6c01c5e706343df6be363b873a36b8df019243080b941d11595db88fd3
7
+ data.tar.gz: 8c58026757cf44bb84c722319f1e808cf3bc994d628a00146169902e2b4d696bba85e377ccdc59f023c5f9c9e74310f2fc6dfd725a3e3692fddb4fcb9e292787
@@ -13,37 +13,37 @@ jobs:
13
13
  strategy:
14
14
  matrix:
15
15
  gemfile: [rails_4.2, rails_5.0, rails_5.1, rails_5.2, rails_6.0, rails_6.1, rails_7.0]
16
- ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2]
16
+ ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
17
17
  exclude:
18
18
  - { gemfile: rails_4.2, ruby-version: 2.5 }
19
19
  - { gemfile: rails_4.2, ruby-version: 2.6 }
20
20
  - { gemfile: rails_4.2, ruby-version: 2.7 }
21
- - { gemfile: rails_4.2, ruby-version: 3.0 }
21
+ - { gemfile: rails_4.2, ruby-version: '3.0' }
22
22
  - { gemfile: rails_4.2, ruby-version: 3.1 }
23
23
  - { gemfile: rails_4.2, ruby-version: 3.2 }
24
24
  - { gemfile: rails_5.0, ruby-version: 2.5 }
25
25
  - { gemfile: rails_5.0, ruby-version: 2.6 }
26
26
  - { gemfile: rails_5.0, ruby-version: 2.7 }
27
- - { gemfile: rails_5.0, ruby-version: 3.0 }
27
+ - { gemfile: rails_5.0, ruby-version: '3.0' }
28
28
  - { gemfile: rails_5.0, ruby-version: 3.1 }
29
29
  - { gemfile: rails_5.0, ruby-version: 3.2 }
30
30
  - { gemfile: rails_5.1, ruby-version: 2.6 }
31
31
  - { gemfile: rails_5.1, ruby-version: 2.7 }
32
- - { gemfile: rails_5.1, ruby-version: 3.0 }
32
+ - { gemfile: rails_5.1, ruby-version: '3.0' }
33
33
  - { gemfile: rails_5.1, ruby-version: 3.1 }
34
34
  - { gemfile: rails_5.1, ruby-version: 3.2 }
35
35
  - { gemfile: rails_5.2, ruby-version: 2.7 }
36
- - { gemfile: rails_5.2, ruby-version: 3.0 }
36
+ - { gemfile: rails_5.2, ruby-version: '3.0' }
37
37
  - { gemfile: rails_5.2, ruby-version: 3.1 }
38
38
  - { gemfile: rails_5.2, ruby-version: 3.2 }
39
39
  - { gemfile: rails_6.0, ruby-version: 2.3 }
40
40
  - { gemfile: rails_6.0, ruby-version: 2.4 }
41
- - { gemfile: rails_6.0, ruby-version: 3.0 }
41
+ - { gemfile: rails_6.0, ruby-version: '3.0' }
42
42
  - { gemfile: rails_6.0, ruby-version: 3.1 }
43
43
  - { gemfile: rails_6.0, ruby-version: 3.2 }
44
44
  - { gemfile: rails_6.1, ruby-version: 2.3 }
45
45
  - { gemfile: rails_6.1, ruby-version: 2.4 }
46
- - { gemfile: rails_6.1, ruby-version: 3.0 }
46
+ - { gemfile: rails_6.1, ruby-version: '3.0' }
47
47
  - { gemfile: rails_6.1, ruby-version: 3.1 }
48
48
  - { gemfile: rails_6.1, ruby-version: 3.2 }
49
49
  - { gemfile: rails_7.0, ruby-version: 2.3 }
@@ -55,15 +55,13 @@ jobs:
55
55
  BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
56
56
 
57
57
  steps:
58
- - uses: actions/checkout@v2
58
+ - uses: actions/checkout@v3
59
59
 
60
60
  - name: Install Ruby ${{ matrix.ruby-version }}
61
61
  uses: ruby/setup-ruby@v1
62
62
  with:
63
63
  ruby-version: ${{ matrix.ruby-version }}
64
-
65
- - name: Install dependencies
66
- run: bundle install
64
+ bundler-cache: true
67
65
 
68
66
  - name: Run tests with Ruby ${{ matrix.ruby-version }} and Gemfile ${{ matrix.gemfile }}
69
67
  run: bundle exec rake
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.required_ruby_version = ">= 2.3"
22
22
 
23
23
  spec.add_dependency "activemodel"
24
- spec.add_dependency "rotp", "~> 6.2.0"
24
+ spec.add_dependency "rotp", "~> 6.3.0"
25
25
 
26
26
  spec.add_development_dependency "activerecord"
27
27
  spec.add_development_dependency "rake"
@@ -1,5 +1,5 @@
1
1
  module ActiveModel
2
2
  module Otp
3
- VERSION = '2.3.2'.freeze
3
+ VERSION = '2.3.4'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_model_otp
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillermo Iguaran
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2023-04-26 00:00:00.000000000 Z
13
+ date: 2024-04-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activemodel
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - "~>"
34
34
  - !ruby/object:Gem::Version
35
- version: 6.2.0
35
+ version: 6.3.0
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - "~>"
41
41
  - !ruby/object:Gem::Version
42
- version: 6.2.0
42
+ version: 6.3.0
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: activerecord
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
169
  - !ruby/object:Gem::Version
170
170
  version: '0'
171
171
  requirements: []
172
- rubygems_version: 3.4.1
172
+ rubygems_version: 3.2.32
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Adds methods to set and authenticate against one time passwords.