auther 14.0.1 → 14.0.3

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: 1bb3a734b4fa581175da713b351ca6c034a160781bc20db8ff1d084febf0024e
4
- data.tar.gz: 5f9b06f0ee7094651244a15752e8253d6720dbe111dae29a92633398ad27f548
3
+ metadata.gz: b7d82bf7273f3f2e31bed2e380696cd6e461d210932cb93da56ecbe5a92bccc1
4
+ data.tar.gz: 8c6178bb178d4c41a4d2496075567ebb5d5418fb3912243b23a31973ae59b7bb
5
5
  SHA512:
6
- metadata.gz: 31c62f0139e58c2cc346e6bf39c09896cda8b81171831990dddf7975d9f58517f190abe95c79993750b7b1aa29b2c55e8152dd102d782bbbcb405b07b932cc8c
7
- data.tar.gz: a3026f173cffb28d556672b55b084fafcccb104afb35174ae5bb37a62a450593ab2352259b59bd3b34ac32876ccb15d5fb4ad9889e63933717b94321d6158fac
6
+ metadata.gz: c674bafef4d926cf579a5fc645c866b2770be9f52dea802d3a98d532a48917b6667485310b737a6a0c51cdc361ed21548762044b684d359b1d03413e45b00afa
7
+ data.tar.gz: 36107dbb714cc3b30cfcedc072a577467e1eae40f81326de7f56b6d6538a8119eff364284d9ff7e57dbfc40f95632db7c9d5fbaa7ca3302db289f955b3863bbc
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -20,8 +20,8 @@ toc::[]
20
20
  * Supports form-based authentication compatible with password managers like
21
21
  link:https://agilebits.com/onepassword[1Password].
22
22
 
23
- image::https://www.alchemists.io/images/projects/auther/screenshots/form-without_errors.png[Form Without Errors Screenshot]
24
- image::https://www.alchemists.io/images/projects/auther/screenshots/form-with_errors.png[Form With Errors Screenshot]
23
+ image::https://alchemists.io/images/projects/auther/screenshots/form-without_errors.png[Form Without Errors Screenshot]
24
+ image::https://alchemists.io/images/projects/auther/screenshots/form-with_errors.png[Form With Errors Screenshot]
25
25
 
26
26
  * Uses CSS Flexbox for lightweight styling.
27
27
  * Uses encrypted account credentials to keep sensitive information secure.
@@ -37,18 +37,34 @@ image::https://www.alchemists.io/images/projects/auther/screenshots/form-with_er
37
37
 
38
38
  == Setup
39
39
 
40
- To install, run:
40
+ To install _with_ security, run:
41
+
42
+ [source,bash]
43
+ ----
44
+ # 💡 Skip this line if you already have the public certificate installed.
45
+ gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
46
+ gem install auther --trust-policy HighSecurity
47
+ ----
48
+
49
+ To install _without_ security, run:
41
50
 
42
51
  [source,bash]
43
52
  ----
44
53
  gem install auther
45
54
  ----
46
55
 
47
- Add the following to your Gemfile:
56
+ You can also add the gem directly to your project:
57
+
58
+ [source,bash]
59
+ ----
60
+ bundle add auther
61
+ ----
62
+
63
+ Once the gem is installed, you only need to require it:
48
64
 
49
65
  [source,ruby]
50
66
  ----
51
- gem "auther"
67
+ require "auther"
52
68
  ----
53
69
 
54
70
  Run the install generator to configure and initialize your application:
@@ -68,7 +84,7 @@ rails generate auther:credentials
68
84
  If using link:https://direnv.net[direnv], for example, you can copy and paste the generated
69
85
  credentials into your `.envrc` file. Example:
70
86
 
71
- image::https://www.alchemists.io/images/projects/auther/screenshots/credentials_generator.jpg[Credentials Generator Screenshot]
87
+ image::https://alchemists.io/images/projects/auther/screenshots/credentials_generator.jpg[Credentials Generator Screenshot]
72
88
 
73
89
  == Usage
74
90
 
@@ -253,19 +269,19 @@ To test, run:
253
269
  bin/rake
254
270
  ----
255
271
 
256
- == link:https://www.alchemists.io/policies/license[License]
272
+ == link:https://alchemists.io/policies/license[License]
257
273
 
258
- == link:https://www.alchemists.io/policies/security[Security]
274
+ == link:https://alchemists.io/policies/security[Security]
259
275
 
260
- == link:https://www.alchemists.io/policies/code_of_conduct[Code of Conduct]
276
+ == link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
261
277
 
262
- == link:https://www.alchemists.io/policies/contributions[Contributions]
278
+ == link:https://alchemists.io/policies/contributions[Contributions]
263
279
 
264
- == link:https://www.alchemists.io/projects/auther/versions[Versions]
280
+ == link:https://alchemists.io/projects/auther/versions[Versions]
265
281
 
266
- == link:https://www.alchemists.io/community[Community]
282
+ == link:https://alchemists.io/community[Community]
267
283
 
268
284
  == Credits
269
285
 
270
- * Built with link:https://www.alchemists.io/projects/gemsmith[Gemsmith].
271
- * Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
286
+ * Built with link:https://alchemists.io/projects/gemsmith[Gemsmith].
287
+ * Engineered by link:https://alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
data/auther.gemspec CHANGED
@@ -2,18 +2,18 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "auther"
5
- spec.version = "14.0.1"
5
+ spec.version = "14.0.3"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
- spec.homepage = "https://www.alchemists.io/projects/auther"
8
+ spec.homepage = "https://alchemists.io/projects/auther"
9
9
  spec.summary = "Enhances Rails with multi-account, " \
10
10
  "form-based, database-less, application-wide authentication."
11
11
  spec.license = "Hippocratic-2.1"
12
12
 
13
13
  spec.metadata = {
14
14
  "bug_tracker_uri" => "https://github.com/bkuhlmann/auther/issues",
15
- "changelog_uri" => "https://www.alchemists.io/projects/auther/versions",
16
- "documentation_uri" => "https://www.alchemists.io/projects/auther",
15
+ "changelog_uri" => "https://alchemists.io/projects/auther/versions",
16
+ "documentation_uri" => "https://alchemists.io/projects/auther",
17
17
  "funding_uri" => "https://github.com/sponsors/bkuhlmann",
18
18
  "label" => "Auther",
19
19
  "rubygems_mfa_required" => "true",
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: 14.0.1
4
+ version: 14.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
@@ -10,25 +10,32 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIC/jCCAeagAwIBAgIBBTANBgkqhkiG9w0BAQsFADAlMSMwIQYDVQQDDBpicm9v
14
- a2UvREM9YWxjaGVtaXN0cy9EQz1pbzAeFw0yMjAzMTkxNzI0MzJaFw0yMzAzMTkx
15
- NzI0MzJaMCUxIzAhBgNVBAMMGmJyb29rZS9EQz1hbGNoZW1pc3RzL0RDPWlvMIIB
16
- IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6l1qpXTiomH1RfMRloyw7MiE
17
- xyVx/x8Yc3EupdH7uhNaTXQGyORN6aOY//1QXXMHIZ9tW74nZLhesWMSUMYy0XhB
18
- brs+KkurHnc9FnEJAbG7ebGvl/ncqZt72nQvaxpDxvuCBHgJAz+8i5wl6FhLw+oT
19
- 9z0A8KcGhz67SdcoQiD7qiCjL/2NTeWHOzkpPrdGlt088+VerEEGf5I13QCvaftP
20
- D5vkU0YlAm1r98BymuJlcQ1qdkVEI1d48ph4kcS0S0nv1RiuyVb6TCAR3Nu3VaVq
21
- 3fPzZKJLZBx67UvXdbdicWPiUR75elI4PXpLIic3xytaF52ZJYyKZCNZJhNwfQID
22
- AQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU0nzow9vc
23
- 2CdikiiE3fJhP/gY4ggwDQYJKoZIhvcNAQELBQADggEBAJbbNyWzFjqUNVPPCUCo
24
- IMrhDa9xf1xkORXNYYbmXgoxRy/KyNbUr+jgEEoWJAm9GXlcqxxWAUI6pK/i4/Qi
25
- X6rPFEFmeObDOHNvuqy8Hd6AYsu+kP94U/KJhe9wnWGMmGoNKJNU3EkW3jM/osSl
26
- +JRxiH5t4WtnDiVyoYl5nYC02rYdjJkG6VMxDymXTqn7u6HhYgZkGujq1UPar8x2
27
- hNIWJblDKKSu7hA2d6+kUthuYo13o1sg1Da/AEDg0hoZSUvhqDEF5Hy232qb3pDt
28
- CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
29
- RFE=
13
+ MIIEeDCCAuCgAwIBAgIBATANBgkqhkiG9w0BAQsFADBBMQ8wDQYDVQQDDAZicm9v
14
+ a2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQBGRYC
15
+ aW8wHhcNMjMwMzIyMTYxNDQxWhcNMjUwMzIxMTYxNDQxWjBBMQ8wDQYDVQQDDAZi
16
+ cm9va2UxGjAYBgoJkiaJk/IsZAEZFgphbGNoZW1pc3RzMRIwEAYKCZImiZPyLGQB
17
+ GRYCaW8wggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQCro8tj5/E1Hg88
18
+ f4qfiwPVd2zJQHvdYt4GHVvuHRRgx4HGhJuNp+4BId08RBn7V6V1MW6MY3kezRBs
19
+ M+7QOQ4b1xNLTvY7FYQB1wGK5a4x7TTokDrPYQxDB2jmsdDYCzVbIMrAvUfcecRi
20
+ khyGZCdByiiCl4fKv77P12tTT+NfsvXkLt/AYCGwjOUyGKTQ01Z6eC09T27GayPH
21
+ QQvIkakyFgcJtzSyGzs8bzK5q9u7wQ12MNTjJoXzW69lqp0oNvDylu81EiSUb5S6
22
+ QzzPxZBiRB1sgtbt1gUbVI262ZDq1gR+HxPFmp+Cgt7ZLIJZAtesQvtcMzseXpfn
23
+ hpmm0Sw22KGhRAy/mqHBRhDl5HqS1SJp2Ko3lcnpXeFResp0HNlt8NSu13vhC08j
24
+ GUHU9MyIXbFOsnp3K3ADrAVjPWop8EZkmUR3MV/CUm00w2cZHCSGiXl1KMpiVKvk
25
+ Ywr1gd2ZME4QLSo+EXUtLxDUa/W3xnBS8dBOuMMz02FPWYr3PN8CAwEAAaN7MHkw
26
+ CQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFAFgmv0tYMZnItuPycSM
27
+ F5wykJEVMB8GA1UdEQQYMBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMB8GA1UdEgQY
28
+ MBaBFGJyb29rZUBhbGNoZW1pc3RzLmlvMA0GCSqGSIb3DQEBCwUAA4IBgQAX+EGY
29
+ 9RLYGxF1VLZz+G1ACQc4uyrCB6kXwI06kzUa5dF9tPXqTX9ffnz3/W8ck2IQhKzu
30
+ MKO2FVijzbDWTsZeZGglS4E+4Jxpau1lU9HhOIcKolv6LeC6UdALTFudY+GLb8Xw
31
+ REXgaJkjzzhkUSILmEnRwEbY08dVSl7ZAaxVI679vfI2yapLlIwpbBgmQTiTvPr3
32
+ qyyLUno9flYEOv9fmGHunSrM+gE0/0niGTXa5GgXBXYGS2he4LQGgSBfGp/cTwMU
33
+ rDKJRcusZ12lNBeDfgqACz/BBJF8FLodgk6rGMRZz7+ZmjjHEmpG5bQpR6Q2BuWL
34
+ XMtYk/QzaWuhiR7pWjiF8jbdd7RO6or0ohq7iFkokz/5xrtQ/vPzU2RQ3Qc6YaKw
35
+ 3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
+ gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
30
37
  -----END CERTIFICATE-----
31
- date: 2023-01-22 00:00:00.000000000 Z
38
+ date: 2023-04-30 00:00:00.000000000 Z
32
39
  dependencies:
33
40
  - !ruby/object:Gem::Dependency
34
41
  name: rails
@@ -118,13 +125,13 @@ files:
118
125
  - lib/generators/auther/credentials/credentials_generator.rb
119
126
  - lib/generators/auther/install/install_generator.rb
120
127
  - lib/generators/auther/templates/config/initializers/auther.rb
121
- homepage: https://www.alchemists.io/projects/auther
128
+ homepage: https://alchemists.io/projects/auther
122
129
  licenses:
123
130
  - Hippocratic-2.1
124
131
  metadata:
125
132
  bug_tracker_uri: https://github.com/bkuhlmann/auther/issues
126
- changelog_uri: https://www.alchemists.io/projects/auther/versions
127
- documentation_uri: https://www.alchemists.io/projects/auther
133
+ changelog_uri: https://alchemists.io/projects/auther/versions
134
+ documentation_uri: https://alchemists.io/projects/auther
128
135
  funding_uri: https://github.com/sponsors/bkuhlmann
129
136
  label: Auther
130
137
  rubygems_mfa_required: 'true'
@@ -144,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
151
  - !ruby/object:Gem::Version
145
152
  version: '0'
146
153
  requirements: []
147
- rubygems_version: 3.4.4
154
+ rubygems_version: 3.4.12
148
155
  signing_key:
149
156
  specification_version: 4
150
157
  summary: Enhances Rails with multi-account, form-based, database-less, application-wide
metadata.gz.sig CHANGED
Binary file