minimalist_authentication 2.3.0 → 2.4.0

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
  SHA256:
3
- metadata.gz: bd72c9f17536ef24bfc7d134733d03a00f1c235d5708b01dc2d5f415a484a688
4
- data.tar.gz: 0501ccbf2663bf59d5a18ebb45566de7e04739b48ebda46ce6f0a5efa5ff0c78
3
+ metadata.gz: b96cc91bf5acc0a4606333d5b09207c9c8e6116a20c7fb8b32b2bf34ba15378a
4
+ data.tar.gz: 442db2eec5c51db232a5e490892cb2d4380501077ec0350da73f532cac080819
5
5
  SHA512:
6
- metadata.gz: a1bb394153abcb693310c2d78a0d75385730accf41296e0871a86f15522a37db365bf09b41f94e092f4ab50be37b26765c0d91f93b88fcee6555d8737c4c38ab
7
- data.tar.gz: aa4b2745cb630582b9c86a42aead66bd12b3be68d14c64f13d99f8cbbbd50423fc9820ba76bf84093503d84746d7046bb3823e421c3dc9d764f13e130c94f9d2
6
+ metadata.gz: 6ff22e83ea138efb4fba838deaf1697bf3e7d65eb80ec19301ed48c56c128ddb1a0838e5f31feee15ada666e228942316008724ba8ba723b11f7185aea862d9b
7
+ data.tar.gz: afe046c528a3fda8b673ac84337450edf79ab5c12cdfb49ef52d7374d63a7c0a8062ced6d02315a4fb3f9ad749d27f52fcc075c8a3a262e1198925326e731e14
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2009-2017 Brightways Learning https://www.brightwayslearning.org
1
+ Copyright 2009-2022 Brightways Learning https://www.brightwayslearning.org
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -1,36 +1,8 @@
1
- begin
2
- require 'bundler/setup'
3
- rescue LoadError
4
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
- end
1
+ require "bundler/setup"
6
2
 
7
- require 'rdoc/task'
3
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
8
5
 
9
- RDoc::Task.new(:rdoc) do |rdoc|
10
- rdoc.rdoc_dir = 'rdoc'
11
- rdoc.title = 'MinimalistAuthentication'
12
- rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.md')
14
- rdoc.rdoc_files.include('lib/**/*.rb')
15
- end
6
+ load "rails/tasks/statistics.rake"
16
7
 
17
- APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
- load 'rails/tasks/engine.rake'
19
-
20
-
21
- load 'rails/tasks/statistics.rake'
22
-
23
-
24
-
25
- require 'bundler/gem_tasks'
26
-
27
- require 'rake/testtask'
28
-
29
- Rake::TestTask.new(:test) do |t|
30
- t.libs << 'test'
31
- t.pattern = 'test/**/*_test.rb'
32
- t.verbose = false
33
- end
34
-
35
-
36
- task default: :test
8
+ require "bundler/gem_tasks"
@@ -67,7 +67,7 @@ module MinimalistAuthentication
67
67
 
68
68
  # Returns the user_model class
69
69
  # Calling constantize on a string makes this work correctly with
70
- # the spring application preloader gem.
70
+ # the Spring application preloader gem.
71
71
  def user_model
72
72
  user_model_name.constantize
73
73
  end
@@ -1,3 +1,3 @@
1
1
  module MinimalistAuthentication
2
- VERSION = '2.3.0'
2
+ VERSION = '2.4.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimalist_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Baldwin
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-08-10 00:00:00.000000000 Z
12
+ date: 2023-01-31 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -45,20 +45,6 @@ dependencies:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: 3.1.3
48
- - !ruby/object:Gem::Dependency
49
- name: sqlite3
50
- requirement: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '1.3'
55
- type: :development
56
- prerelease: false
57
- version_requirements: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '1.3'
62
48
  description: A Rails authentication plugin that takes a minimalist approach. It is
63
49
  designed to be simple to understand, use, and modify for your application.
64
50
  email:
@@ -70,7 +56,6 @@ files:
70
56
  - MIT-LICENSE
71
57
  - README.md
72
58
  - Rakefile
73
- - app/assets/config/minimalist_authentication_manifest.js
74
59
  - app/controllers/email_verifications_controller.rb
75
60
  - app/controllers/emails_controller.rb
76
61
  - app/controllers/password_resets_controller.rb
@@ -105,11 +90,13 @@ files:
105
90
  - lib/minimalist_authentication/user.rb
106
91
  - lib/minimalist_authentication/verifiable_token.rb
107
92
  - lib/minimalist_authentication/version.rb
108
- - lib/tasks/minimalist_authentication_tasks.rake
109
93
  homepage: https://github.com/wwidea/minimalist_authentication
110
94
  licenses:
111
95
  - MIT
112
- metadata: {}
96
+ metadata:
97
+ homepage_uri: https://github.com/wwidea/minimalist_authentication
98
+ source_code_uri: https://github.com/wwidea/minimalist_authentication
99
+ rubygems_mfa_required: 'true'
113
100
  post_install_message:
114
101
  rdoc_options: []
115
102
  require_paths:
@@ -125,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
112
  - !ruby/object:Gem::Version
126
113
  version: '0'
127
114
  requirements: []
128
- rubygems_version: 3.3.9
115
+ rubygems_version: 3.4.5
129
116
  signing_key:
130
117
  specification_version: 4
131
118
  summary: A Rails authentication plugin that takes a minimalist approach.
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :minimalist_authentication do
3
- # # Task goes here
4
- # end