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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +28 -12
- data/xdg.gemspec +4 -4
- data.tar.gz.sig +3 -2
- metadata +30 -23
- 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: e84b7333763769c797591aea4308d932f0de3c1d4c4898847082bf03cb328430
|
|
4
|
+
data.tar.gz: dc5e8bb9cffaf7eadf5e2e6b23dd8d7b9d3a3c46e4c69b3e31a541b863e74df8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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://
|
|
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
|
-
|
|
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
|
-
|
|
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://
|
|
293
|
+
== link:https://alchemists.io/policies/license[License]
|
|
278
294
|
|
|
279
|
-
== link:https://
|
|
295
|
+
== link:https://alchemists.io/policies/security[Security]
|
|
280
296
|
|
|
281
|
-
== link:https://
|
|
297
|
+
== link:https://alchemists.io/policies/code_of_conduct[Code of Conduct]
|
|
282
298
|
|
|
283
|
-
== link:https://
|
|
299
|
+
== link:https://alchemists.io/policies/contributions[Contributions]
|
|
284
300
|
|
|
285
|
-
== link:https://
|
|
301
|
+
== link:https://alchemists.io/projects/xdg/versions[Versions]
|
|
286
302
|
|
|
287
|
-
== link:https://
|
|
303
|
+
== link:https://alchemists.io/community[Community]
|
|
288
304
|
|
|
289
305
|
== Credits
|
|
290
306
|
|
|
291
|
-
* Built with link:https://
|
|
292
|
-
* Engineered by link:https://
|
|
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.
|
|
5
|
+
spec.version = "7.0.3"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
|
-
spec.homepage = "https://
|
|
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://
|
|
15
|
-
"documentation_uri" => "https://
|
|
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
|
-
|
|
2
|
-
|
|
1
|
+
�v�bZY�v�X�]�YO�J
|
|
2
|
+
��܀ic����j��1�����3Nz�wK,�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.
|
|
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
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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-
|
|
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://
|
|
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://
|
|
61
|
-
documentation_uri: https://
|
|
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.
|
|
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
|