devise_duo_sec 0.1.0 → 1.0.0

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
- SHA1:
3
- metadata.gz: 10077ecc87e054b78f63af33fc70117cee81d387
4
- data.tar.gz: 8ae3c3c74580c748fe3df08f2bc898411ef6c150
2
+ SHA256:
3
+ metadata.gz: c7197a6947f8545900d0751783d71738dbfb66b208a11198c15135750a829388
4
+ data.tar.gz: 5d6542a919f3b3c8620bd2a007794f58f2a76ef1b3fce619c8f1a6fd978ce2cd
5
5
  SHA512:
6
- metadata.gz: a71b9d5daaa048d60b1f1a56ea69646028f9563512ecfb58607f7c877225f2205f8de5f9cc22d26cfd726d4f9c8516d3ed884c3eeafec808514c2f968af9b7b8
7
- data.tar.gz: 869690a465b556b7f408d31a7a624e983b92a79418b49dd0a668aa9b7b85dda8965ef8ab5add3b87b55dcbcfa88d2aa270e2bc95d6dc4b065e769923fb1c3fba
6
+ metadata.gz: 2eb94b33dccab31962262ed634497864f0635a72067ac4d15a39a9bdb1563eb729b00fbc765f93a3ea9636c79897c10880e02c26f73039055cf76b8724030326
7
+ data.tar.gz: 72646d03a88cb2e757060eecae7376d0d3d33172dff4e5b3d3368fae876cd0216c06f7a4f574bc02cbef0a820009715f9937dc2745058a4fb115107fd113c912
@@ -1,5 +1,5 @@
1
1
  module Devise
2
2
  module DuoSecurity
3
- VERSION = "0.1.0"
3
+ VERSION = "1.0.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_duo_sec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Molnar
@@ -11,22 +11,22 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2019-02-27 00:00:00.000000000 Z
14
+ date: 2019-12-20 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rails
18
18
  requirement: !ruby/object:Gem::Requirement
19
19
  requirements:
20
- - - ">="
20
+ - - ">"
21
21
  - !ruby/object:Gem::Version
22
- version: 5.0.0
22
+ version: '5'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
- - - ">="
27
+ - - ">"
28
28
  - !ruby/object:Gem::Version
29
- version: 5.0.0
29
+ version: '5'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: devise
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -281,57 +281,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
281
  - !ruby/object:Gem::Version
282
282
  version: '0'
283
283
  requirements: []
284
- rubyforge_project:
285
- rubygems_version: 2.6.13
284
+ rubygems_version: 3.0.3
286
285
  signing_key:
287
286
  specification_version: 4
288
287
  summary: A gem to support duosecurity 2 factor auth.
289
288
  test_files:
290
- - test/devise_duo_security_test.rb
291
289
  - test/support/helpers.rb
292
290
  - test/test_helper.rb
291
+ - test/devise_duo_security_test.rb
293
292
  - test/integration/navigation_test.rb
294
- - test/dummy/public/favicon.ico
295
- - test/dummy/public/422.html
296
- - test/dummy/public/500.html
297
- - test/dummy/public/404.html
298
- - test/dummy/app/controllers/application_controller.rb
299
- - test/dummy/app/controllers/home_controller.rb
300
- - test/dummy/app/helpers/application_helper.rb
301
- - test/dummy/app/assets/stylesheets/application.css
302
- - test/dummy/app/assets/javascripts/application.js
303
- - test/dummy/app/models/user.rb
304
- - test/dummy/app/views/layouts/application.html.erb
305
- - test/dummy/Rakefile
293
+ - test/dummy/Gemfile
294
+ - test/dummy/config.ru
295
+ - test/dummy/db/schema.rb
296
+ - test/dummy/db/migrate/20150320103707_devise_create_users.rb
297
+ - test/dummy/README.rdoc
306
298
  - test/dummy/Gemfile.lock
307
299
  - test/dummy/test/fixtures/users.yml
308
300
  - test/dummy/test/models/user_test.rb
309
- - test/dummy/Gemfile
301
+ - test/dummy/public/404.html
302
+ - test/dummy/public/favicon.ico
303
+ - test/dummy/public/422.html
304
+ - test/dummy/public/500.html
305
+ - test/dummy/config/boot.rb
306
+ - test/dummy/config/environments/test.rb
307
+ - test/dummy/config/environments/development.rb
308
+ - test/dummy/config/environments/production.rb
309
+ - test/dummy/config/application.rb
310
310
  - test/dummy/config/routes.rb
311
- - test/dummy/config/locales/devise.en.yml
312
311
  - test/dummy/config/locales/en.yml
313
- - test/dummy/config/database.yml
314
- - test/dummy/config/initializers/session_store.rb
315
- - test/dummy/config/initializers/devise.rb
312
+ - test/dummy/config/locales/devise.en.yml
316
313
  - test/dummy/config/initializers/mime_types.rb
317
314
  - test/dummy/config/initializers/assets.rb
318
315
  - test/dummy/config/initializers/wrap_parameters.rb
319
- - test/dummy/config/initializers/filter_parameter_logging.rb
320
- - test/dummy/config/initializers/cookies_serializer.rb
316
+ - test/dummy/config/initializers/session_store.rb
321
317
  - test/dummy/config/initializers/backtrace_silencers.rb
318
+ - test/dummy/config/initializers/cookies_serializer.rb
319
+ - test/dummy/config/initializers/devise.rb
322
320
  - test/dummy/config/initializers/inflections.rb
323
- - test/dummy/config/environments/production.rb
324
- - test/dummy/config/environments/test.rb
325
- - test/dummy/config/environments/development.rb
326
- - test/dummy/config/boot.rb
321
+ - test/dummy/config/initializers/filter_parameter_logging.rb
327
322
  - test/dummy/config/environment.rb
328
- - test/dummy/config/application.rb
329
323
  - test/dummy/config/secrets.yml
330
- - test/dummy/README.rdoc
331
- - test/dummy/db/migrate/20150320103707_devise_create_users.rb
332
- - test/dummy/db/schema.rb
333
- - test/dummy/config.ru
334
- - test/dummy/bin/setup
324
+ - test/dummy/config/database.yml
335
325
  - test/dummy/bin/bundle
336
- - test/dummy/bin/rails
337
326
  - test/dummy/bin/rake
327
+ - test/dummy/bin/setup
328
+ - test/dummy/bin/rails
329
+ - test/dummy/app/controllers/home_controller.rb
330
+ - test/dummy/app/controllers/application_controller.rb
331
+ - test/dummy/app/views/layouts/application.html.erb
332
+ - test/dummy/app/helpers/application_helper.rb
333
+ - test/dummy/app/models/user.rb
334
+ - test/dummy/app/assets/stylesheets/application.css
335
+ - test/dummy/app/assets/javascripts/application.js
336
+ - test/dummy/Rakefile