auther 12.0.1 → 12.2.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: 3f9f02f0498565a556c31d171f9a07ef3bbcfa4e6a0d299c0e39e82c9ac230cb
4
- data.tar.gz: 9303dd141e51b65da1fec068ad4b979b090612acf7b938d6b44027eb87e3ec78
3
+ metadata.gz: 4a03967cbf1a5573183652d43bcc6a789f062a12c82b4ba134aaa02a362cede6
4
+ data.tar.gz: 585d86bc6761636b5bfb15f7629aa5c9e855384039af77af40566914d881793a
5
5
  SHA512:
6
- metadata.gz: ecc698d4f5acadc72a52ed272d3e120f7e00b7757edb14b61565dd83a6d814d756e2d64ef53635441e52d97bb2c62ce86fc8813bac3f19ba0e9ec01aef2c0a93
7
- data.tar.gz: ca31c832daf0d0d369c2970cc57df97cc595b17ab042c29a0f27a06dd7aefa397bc374075cbe9a65623ed2081cec580c18a4d69c04924186c8086bb56c6cd506
6
+ metadata.gz: 5fa3dfdd7b6491c0b51750f8a400425cae5db424a0cfa77168d87f18a7aed1d63315ccee6c7b3904bb2909806a04b0d209bcf39d74998a0343708588c7d63f09
7
+ data.tar.gz: 7cf80756f54d79aa885647132b70257098e0a9602de57e49452be5afcaa660c8e5f096e693eca01c0e33cc35eafd6b57f9467bbb90487c7451f8104af5b5e92a
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -11,11 +11,14 @@ image::https://img.shields.io/badge/code_style-alchemists-brightgreen.svg[Alchem
11
11
  [link=https://circleci.com/gh/bkuhlmann/auther]
12
12
  image::https://circleci.com/gh/bkuhlmann/auther.svg?style=svg[Circle CI Status]
13
13
 
14
- Provides simple, form-based authentication for apps that need security but don't want to deal with
15
- the clunky UI of HTTP Basic Authentication or something as heavyweight as
16
- link:https://github.com/plataformatec/devise[Devise]. It doesn't require a database and is
17
- compatible with password managers like link:https://agilebits.com/onepassword[1Password] making for
18
- a pleasant user experience.
14
+ Auther provides simple, form-based authentication for apps that need security but don't want to deal
15
+ with the clunky HTTP Basic Authentication user interface or as heavyweight as
16
+ link:https://github.com/plataformatec/devise[Devise]. Auther doesn't require a database and is
17
+ compatible with password managers which makes for a pleasant user experience.
18
+
19
+ Auther is useful in situations -- like minimal viable products or applications with a small user
20
+ base -- where you need to a security layer up and running quickly before adding more robust user
21
+ management.
19
22
 
20
23
  toc::[]
21
24
 
@@ -110,7 +113,7 @@ secret = SecureRandom.hex 16 # "426a7f46548a1a4518676a8e246517d8"
110
113
  # The cipher for encrypting/decrypting values.
111
114
  cipher = Auther::Cipher.new secret
112
115
 
113
- # Use the following to encrypt an unecrypted value.
116
+ # Use the following to encrypt an unencrypted value.
114
117
  cipher.encrypt "test@test.com"
115
118
 
116
119
  # Use the following to decrypt an encrypted value.
@@ -274,6 +277,11 @@ participating in this project you agree to abide by its terms.
274
277
 
275
278
  Read link:CONTRIBUTING.adoc[CONTRIBUTING] for details.
276
279
 
280
+ == Community
281
+
282
+ Feel free to link:https://www.alchemists.io/community[join the commmunity] for discussions related
283
+ to this project and much more.
284
+
277
285
  == License
278
286
 
279
287
  Read link:LICENSE.adoc[LICENSE] for details.
@@ -5,7 +5,7 @@ module Auther
5
5
  module Identity
6
6
  NAME = "auther"
7
7
  LABEL = "Auther"
8
- VERSION = "12.0.1"
9
- VERSION_LABEL = "#{LABEL} #{VERSION}"
8
+ VERSION = "12.2.0"
9
+ VERSION_LABEL = "#{LABEL} #{VERSION}".freeze
10
10
  end
11
11
  end
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: 12.0.1
4
+ version: 12.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -28,7 +28,7 @@ cert_chain:
28
28
  lkHilIrX69jq8wMPpBhlaw2mRmeSL50Wv5u6xVBvOHhXFSP1crXM95vfLhLyRYod
29
29
  W2A=
30
30
  -----END CERTIFICATE-----
31
- date: 2021-04-18 00:00:00.000000000 Z
31
+ date: 2021-11-20 00:00:00.000000000 Z
32
32
  dependencies:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rails
@@ -50,14 +50,14 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '8.0'
53
+ version: '8.5'
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '8.0'
60
+ version: '8.5'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: sass-rails
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -125,6 +125,7 @@ metadata:
125
125
  bug_tracker_uri: https://github.com/bkuhlmann/auther/issues
126
126
  changelog_uri: https://www.alchemists.io/projects/auther/changes.html
127
127
  documentation_uri: https://www.alchemists.io/projects/auther
128
+ rubygems_mfa_required: 'true'
128
129
  source_code_uri: https://github.com/bkuhlmann/auther
129
130
  post_install_message:
130
131
  rdoc_options: []
@@ -141,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
141
142
  - !ruby/object:Gem::Version
142
143
  version: '0'
143
144
  requirements: []
144
- rubygems_version: 3.2.16
145
+ rubygems_version: 3.2.31
145
146
  signing_key:
146
147
  specification_version: 4
147
148
  summary: Enhances Rails with multi-account, form-based, database-less, application-wide
metadata.gz.sig CHANGED
Binary file