xdg 7.0.1 → 7.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: edd6cf62786dfb7690d3f0aa54c692110a3bf4ee6f59ae0547f8861be7969e83
4
- data.tar.gz: d05d7cdef3ad1ac7474a787c3624498fedf0e2841a8e32d6e5b135a37b3d7f82
3
+ metadata.gz: e84b7333763769c797591aea4308d932f0de3c1d4c4898847082bf03cb328430
4
+ data.tar.gz: dc5e8bb9cffaf7eadf5e2e6b23dd8d7b9d3a3c46e4c69b3e31a541b863e74df8
5
5
  SHA512:
6
- metadata.gz: cefd922dd90223296772376d9381a088e62dbe4e65ecc9cf52874342d7d154f506e7f022afcef3ed7caa65c5a2f74be54060c675a4d68e3623433ac94092f9e8
7
- data.tar.gz: fc3fcfa1f6fa32c404d043e5ed41aaf6d1efd9f280ed7a78a069c986d8202df6212b435f4ba2baf9d0b81d72f49e44bdb22050697c35cb0f3e7714e9228e17e5
6
+ metadata.gz: 1a2a79438b254a77e33511f02119eec868e81cb824c6b826edc73cf7fd4ea067f22cb19a321964ae0dfa6d56c6ab0de9e92d873e1280989fd4153720712cb02e
7
+ data.tar.gz: 431e946e8d9983352c1f462bb50f680e7696b61041e01ec8b40a12ec239dd5c9d8657e2f84c7d48a2e0e14ab3ff188ba35255df41837e0a27ae12b800bc1f4d7
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -12,7 +12,7 @@ runtime.
12
12
 
13
13
  💡 If you write a lot of Command Line Interfaces and would like additional/advanced syntactic sugar
14
14
  that includes what is found in this gem, make sure to check out the
15
- link:https://www.alchemists.io/projects/runcom[Runcom] gem too.
15
+ link:https://alchemists.io/projects/runcom[Runcom] gem too.
16
16
 
17
17
  toc::[]
18
18
 
@@ -33,18 +33,34 @@ access to the following environment settings:
33
33
 
34
34
  == Setup
35
35
 
36
- To install, run:
36
+ To install _with_ security, run:
37
+
38
+ [source,bash]
39
+ ----
40
+ # 💡 Skip this line if you already have the public certificate installed.
41
+ gem cert --add <(curl --compressed --location https://alchemists.io/gems.pem)
42
+ gem install xdg --trust-policy HighSecurity
43
+ ----
44
+
45
+ To install _without_ security, run:
37
46
 
38
47
  [source,bash]
39
48
  ----
40
49
  gem install xdg
41
50
  ----
42
51
 
43
- Add the following to your Gemfile:
52
+ You can also add the gem directly to your project:
53
+
54
+ [source,bash]
55
+ ----
56
+ bundle add xdg
57
+ ----
58
+
59
+ Once the gem is installed, you only need to require it:
44
60
 
45
61
  [source,ruby]
46
62
  ----
47
- gem "xdg"
63
+ require "xdg"
48
64
  ----
49
65
 
50
66
  == Usage
@@ -274,19 +290,19 @@ To test, run:
274
290
  bin/rake
275
291
  ----
276
292
 
277
- == link:https://www.alchemists.io/policies/license[License]
293
+ == link:https://alchemists.io/policies/license[License]
278
294
 
279
- == link:https://www.alchemists.io/policies/security[Security]
295
+ == link:https://alchemists.io/policies/security[Security]
280
296
 
281
- == link:https://www.alchemists.io/policies/code_of_conduct[Code of Conduct]
297
+ == link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
282
298
 
283
- == link:https://www.alchemists.io/policies/contributions[Contributions]
299
+ == link:https://alchemists.io/policies/contributions[Contributions]
284
300
 
285
- == link:https://www.alchemists.io/projects/xdg/versions[Versions]
301
+ == link:https://alchemists.io/projects/xdg/versions[Versions]
286
302
 
287
- == link:https://www.alchemists.io/community[Community]
303
+ == link:https://alchemists.io/community[Community]
288
304
 
289
305
  == Credits
290
306
 
291
- * Built with link:https://www.alchemists.io/projects/gemsmith[Gemsmith].
292
- * Engineered by link:https://www.alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
307
+ * Built with link:https://alchemists.io/projects/gemsmith[Gemsmith].
308
+ * Engineered by link:https://alchemists.io/team/brooke_kuhlmann[Brooke Kuhlmann].
data/xdg.gemspec CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "xdg"
5
- spec.version = "7.0.1"
5
+ spec.version = "7.0.3"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
- spec.homepage = "https://www.alchemists.io/projects/xdg"
8
+ spec.homepage = "https://alchemists.io/projects/xdg"
9
9
  spec.summary = "Provides an implementation of the XDG Base Directory Specification."
10
10
  spec.license = "Hippocratic-2.1"
11
11
 
12
12
  spec.metadata = {
13
13
  "bug_tracker_uri" => "https://github.com/bkuhlmann/xdg/issues",
14
- "changelog_uri" => "https://www.alchemists.io/projects/xdg/versions",
15
- "documentation_uri" => "https://www.alchemists.io/projects/xdg",
14
+ "changelog_uri" => "https://alchemists.io/projects/xdg/versions",
15
+ "documentation_uri" => "https://alchemists.io/projects/xdg",
16
16
  "funding_uri" => "https://github.com/sponsors/bkuhlmann",
17
17
  "label" => "XDG",
18
18
  "rubygems_mfa_required" => "true",
data.tar.gz.sig CHANGED
@@ -1,2 +1,3 @@
1
- ��x׾ ߮����!*1P��5xy�=6z������2�|]�\d�[�!Lm2
2
- Ͳݐ�s�|u�M?S�ȥXox�ϑ=��:Ȗ ���ib��N7z`v/��~_�V��-"U�Vmȵy��n�ms�K�(�]n:�s�}�����M�@-�8�}�!��jF�` ��&k�Ƭ�(8�+���i�� a 7�>�Ģ�1��Q��w��k�(�p��5u�����FB r��T����"?栬nXH�r���
1
+ v�bZY�v�X�]�YO�J
2
+ ��܀ic����׎j��1�����3NzwK,�Gq���ň�`�1 ���
3
+ �b;q�����D6F�MR缑P�GUG��Z�Ӫ9�z̦����z����j�h^?��6!�?�m��b�(���`�rj!�xv�u�|���؁�"�Yxŝ�8Di�,7��Ǝ��k��|X*��E
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xdg
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.1
4
+ version: 7.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
  description:
34
41
  email:
@@ -52,13 +59,13 @@ files:
52
59
  - lib/xdg/paths/home.rb
53
60
  - lib/xdg/state.rb
54
61
  - xdg.gemspec
55
- homepage: https://www.alchemists.io/projects/xdg
62
+ homepage: https://alchemists.io/projects/xdg
56
63
  licenses:
57
64
  - Hippocratic-2.1
58
65
  metadata:
59
66
  bug_tracker_uri: https://github.com/bkuhlmann/xdg/issues
60
- changelog_uri: https://www.alchemists.io/projects/xdg/versions
61
- documentation_uri: https://www.alchemists.io/projects/xdg
67
+ changelog_uri: https://alchemists.io/projects/xdg/versions
68
+ documentation_uri: https://alchemists.io/projects/xdg
62
69
  funding_uri: https://github.com/sponsors/bkuhlmann
63
70
  label: XDG
64
71
  rubygems_mfa_required: 'true'
@@ -78,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
85
  - !ruby/object:Gem::Version
79
86
  version: '0'
80
87
  requirements: []
81
- rubygems_version: 3.4.4
88
+ rubygems_version: 3.4.12
82
89
  signing_key:
83
90
  specification_version: 4
84
91
  summary: Provides an implementation of the XDG Base Directory Specification.
metadata.gz.sig CHANGED
Binary file