xdg 7.0.2 → 7.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +19 -3
- data/xdg.gemspec +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -3
- 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
@@ -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
|
data/xdg.gemspec
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
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
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
35
35
|
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
36
36
|
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date: 2023-
|
38
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
39
39
|
dependencies: []
|
40
40
|
description:
|
41
41
|
email:
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: '0'
|
87
87
|
requirements: []
|
88
|
-
rubygems_version: 3.4.
|
88
|
+
rubygems_version: 3.4.12
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: Provides an implementation of the XDG Base Directory Specification.
|
metadata.gz.sig
CHANGED
Binary file
|