auther 18.2.0 → 18.2.1
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +2 -0
- data/auther.gemspec +5 -1
- data.tar.gz.sig +0 -0
- metadata +6 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 064fd8be76cca282a6776697cdf06ccac9bc1b3b55a98005a9d22e8cafbe5682
|
|
4
|
+
data.tar.gz: 2959869ec6a9e88a5f75615bd57ced578ca58a1da459102f67ac239c475a3111
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27c38cf16686f3573ab679475f6ebf35ed592174899cbd3b3fc0a5623c079c9563717c61b9ab7acc73e81855db6315879f05c66e92316a086fdac8916c11d229
|
|
7
|
+
data.tar.gz: d8f09750807da356f4ddd3cc3a740013f0ff049a96ed68ec99fe0565c5c3c65402c3bea67891d9545c4884e2a98c5b39e9949b28b8870ec1db0fe4ce5f0c4113
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
= Auther
|
|
6
6
|
|
|
7
|
+
‼️ *This gem is deprecated and will be fully destroyed on 2027-02-05. There is no replacement. Please update accordingly.* ‼️
|
|
8
|
+
|
|
7
9
|
Auther provides simple, form-based authentication for apps that need security but don't want to deal with the clunky HTTP Basic Authentication user interface or as heavyweight as link:https://github.com/plataformatec/devise[Devise]. Auther doesn't require a database and is compatible with password managers which makes for a pleasant user experience.
|
|
8
10
|
|
|
9
11
|
Auther is useful in situations -- like minimal viable products or applications with a small user base -- where you need to a security layer up and running quickly before adding more robust user management.
|
data/auther.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "auther"
|
|
5
|
-
spec.version = "18.2.
|
|
5
|
+
spec.version = "18.2.1"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://alchemists.io/projects/auther"
|
|
@@ -20,6 +20,10 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
"source_code_uri" => "https://github.com/bkuhlmann/auther"
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
spec.post_install_message = <<~MESSAGE
|
|
24
|
+
DEPRECATION: The Auther gem is deprecated and will be fully destroyed on 2027-02-05.
|
|
25
|
+
MESSAGE
|
|
26
|
+
|
|
23
27
|
spec.signing_key = Gem.default_key_path
|
|
24
28
|
spec.cert_chain = [Gem.default_cert_path]
|
|
25
29
|
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: auther
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 18.2.
|
|
4
|
+
version: 18.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -117,6 +117,10 @@ metadata:
|
|
|
117
117
|
label: Auther
|
|
118
118
|
rubygems_mfa_required: 'true'
|
|
119
119
|
source_code_uri: https://github.com/bkuhlmann/auther
|
|
120
|
+
post_install_message: 'DEPRECATION: The Auther gem is deprecated and will be fully
|
|
121
|
+
destroyed on 2027-02-05.
|
|
122
|
+
|
|
123
|
+
'
|
|
120
124
|
rdoc_options: []
|
|
121
125
|
require_paths:
|
|
122
126
|
- lib
|
|
@@ -131,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
135
|
- !ruby/object:Gem::Version
|
|
132
136
|
version: '0'
|
|
133
137
|
requirements: []
|
|
134
|
-
rubygems_version: 4.0.
|
|
138
|
+
rubygems_version: 4.0.11
|
|
135
139
|
specification_version: 4
|
|
136
140
|
summary: A multi-account, form-based, database-less, application-wide, Rails authenticator.
|
|
137
141
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|