xdg 5.1.1 → 5.3.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: 94fe25ddbad33f6e84bb1167b8d44772c37a1b2443987402a637472eac0e6fb0
4
- data.tar.gz: 9f7f080991b1353d5cc62b6e96bf3c5a8ce8b929114e9f61e0ccd1638ed4f8cf
3
+ metadata.gz: 98969a0117c3f4357e9bd3bd660c02b8a69fa88782d84b778e5585659a0b2418
4
+ data.tar.gz: 91852f8480b942efa3a810d5f4dcc0978aff6375e7e2cf6addc1d25044723b2e
5
5
  SHA512:
6
- metadata.gz: a47af1478f23173618062adae68bda0c25ec097bce38d152eafcfa08791421c72edaf408628b3a19efa82876d4e2d1c689788a4520d23e0a4d68f69262d3aeb5
7
- data.tar.gz: 4958c541915eed9d72333e53ed2c5866fdaee6ae43c75036c4b70f233334fbdb8e491f30325f2da7e942c2e2b777cdb9e2b59126b95b1d52d3026a8f9befa6f9
6
+ metadata.gz: b39b21ab7428ec9009be8c37cc474cc07cd394819c8760e4413d381432b60792ed7593d067e85095d965d247d24f541fcee189184c5d7d653e034b490640ee9f
7
+ data.tar.gz: 3282a3572084679e3c774da24163a703616d164b6d12a87a1c9a65c0a835689f7fd0f36430dd57119374fdfe2abcc34f9cb2f1814029b7b4b86ca965df4f5e9b
checksums.yaml.gz.sig CHANGED
Binary file
data/README.adoc CHANGED
@@ -13,10 +13,12 @@ image::https://circleci.com/gh/bkuhlmann/xdg.svg?style=svg[Circle CI Status]
13
13
 
14
14
  Provides a Ruby implementation of the
15
15
  https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html[XDG Base Directory
16
- Specification].
16
+ Specification] for managing common configurations without polluting your dotfiles. XDG is great for
17
+ command line interfaces or any application that needs a common configuration, cache, data, or
18
+ runtime.
17
19
 
18
- 💡 If you write a lot of Command Line Interfaces and would like additional syntactic sugar that
19
- includes what is found in this gem, make sure to check out the
20
+ 💡 If you write a lot of Command Line Interfaces and would like additional/advanced syntactic sugar
21
+ that includes what is found in this gem, make sure to check out the
20
22
  link:https://www.alchemists.io/projects/runcom[Runcom] gem too.
21
23
 
22
24
  toc::[]
@@ -210,7 +212,7 @@ defined first.
210
212
 
211
213
  ==== `$XDG_*_HOME`
212
214
 
213
- These variables take precidence over the corresponding `$XDG_*_DIRS` environment variables. Using
215
+ These variables take precedence over the corresponding `$XDG_*_DIRS` environment variables. Using
214
216
  a modified version of the `$XDG_*_DIRS` example, shown above, we could have the following setup:
215
217
 
216
218
  [source,bash]
@@ -230,7 +232,7 @@ Yields the following, colon delimited, array:
230
232
  ]
231
233
  ----
232
234
 
233
- Due to `XDG_CONFIG_HOME` taking precidence over the `XDG_CONFIG_DIRS`, the path with the
235
+ Due to `XDG_CONFIG_HOME` taking precedence over the `XDG_CONFIG_DIRS`, the path with the
234
236
  _highest_ priority in this example is: `"/example/priority"`.
235
237
 
236
238
  === Variable Priority
@@ -285,6 +287,11 @@ participating in this project you agree to abide by its terms.
285
287
 
286
288
  Read link:CONTRIBUTING.adoc[CONTRIBUTING] for details.
287
289
 
290
+ == Community
291
+
292
+ Feel free to link:https://www.alchemists.io/community[join the commmunity] for discussions related
293
+ to this project and much more.
294
+
288
295
  == License
289
296
 
290
297
  Read link:LICENSE.adoc[LICENSE] for details.
data/lib/xdg/identity.rb CHANGED
@@ -5,7 +5,7 @@ module XDG
5
5
  module Identity
6
6
  NAME = "xdg"
7
7
  LABEL = "XDG"
8
- VERSION = "5.1.1"
9
- VERSION_LABEL = "#{LABEL} #{VERSION}"
8
+ VERSION = "5.3.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: xdg
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.3.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
  description:
34
34
  email:
@@ -58,6 +58,7 @@ metadata:
58
58
  bug_tracker_uri: https://github.com/bkuhlmann/xdg/issues
59
59
  changelog_uri: https://www.alchemists.io/projects/xdg/changes.html
60
60
  documentation_uri: https://www.alchemists.io/projects/xdg
61
+ rubygems_mfa_required: 'true'
61
62
  source_code_uri: https://github.com/bkuhlmann/xdg
62
63
  post_install_message:
63
64
  rdoc_options: []
@@ -74,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
75
  - !ruby/object:Gem::Version
75
76
  version: '0'
76
77
  requirements: []
77
- rubygems_version: 3.2.16
78
+ rubygems_version: 3.2.31
78
79
  signing_key:
79
80
  specification_version: 4
80
81
  summary: Provides an implementation of the XDG Base Directory Specification.
metadata.gz.sig CHANGED
Binary file