xdg 6.0.1 → 6.1.0

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: 26fd51f58a7d72dd48d77e1215b3a9de65d251591e6afc067b43a3447a627980
4
- data.tar.gz: 8e788531a3a33a66592ce0d5a641a13b961ea9c02cc72dfbdd9e27b904af76da
3
+ metadata.gz: ebab276c56550a825a8c7a0d87f021b176b9f726d58ff4f9c67d7886572062e2
4
+ data.tar.gz: 053546c678a3a52692d6c5fe9aa082025453c3f6ddf9c643cbde8791dd370bf4
5
5
  SHA512:
6
- metadata.gz: 4650a552411794bacb4733cd12113608f3b5b22c9224b47e0583d69cadefae56d67c7698b37d97e260a4607aa10841077102008e34ffc2886bfb35eed2609c46
7
- data.tar.gz: a62387cbfa8c5ae4b40a8ef43a2d869dd7ba32a2b5fa7b85881ca67ad461aad3e18c5ab503abd7abc0b7b40ef00e5ab263417623882d880021e375d25ced1dc1
6
+ metadata.gz: 2b8e50a3605c447af8ab5a20011410f9f75869c881fbf531e17cbd1935cdabd63f6a34a05de35050ccc6d8299cd9d942b384319f9be7d37533b5c52af9c3cd46
7
+ data.tar.gz: fe8e937ce69f4c8c8913bed7a34f01fb324a4c516c6d4bd8acad5e8dc430314982719bd450e2c5828b396c9952433d34b73e7fe7531c37587b42d0f275c54493
checksums.yaml.gz.sig CHANGED
@@ -1 +1,2 @@
1
- z5�����O �`�1��z;ͪN)��}!O��L�w�!�H����֝����%��>�����nkL�5�1kK�����ˀp�̤L�ui����HY_Fm����b{W�0�y��S}�(,4����&�JlK�wBճ�ۭ`��+j�U�`��h9��k�7�Cb��I�/�F)�.G����9��W��F���` a��EY9��#��Ԃ��̙;IKȸT�h�N�b�؆Y���NE�qmX[L��c�
1
+ :$1�F� ��:O��ko��ʢ*�
2
+ ��|�+Ľ� t���ո,�
@@ -5,7 +5,7 @@ module XDG
5
5
  def initialize home: Paths::Home, directories: Paths::Directory, environment: ENV
6
6
  @cache = Cache.new(home:, directories:, environment:)
7
7
  @config = Config.new(home:, directories:, environment:)
8
- @data = Data.new(home:, directories:, environment:)
8
+ @data = Data.new home:, directories:, environment:
9
9
  end
10
10
 
11
11
  def cache_home = cache.home
data/lib/xdg.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "xdg/identity"
4
3
  require "xdg/pair"
5
4
  require "xdg/paths/home"
6
5
  require "xdg/paths/directory"
data/xdg.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "xdg"
5
+ spec.version = "6.1.0"
6
+ spec.platform = Gem::Platform::RUBY
7
+ spec.authors = ["Brooke Kuhlmann"]
8
+ spec.email = ["brooke@alchemists.io"]
9
+ spec.homepage = "https://www.alchemists.io/projects/xdg"
10
+ spec.summary = "Provides an implementation of the XDG Base Directory Specification."
11
+ spec.license = "Hippocratic-3.0"
12
+
13
+ spec.metadata = {
14
+ "bug_tracker_uri" => "https://github.com/bkuhlmann/xdg/issues",
15
+ "changelog_uri" => "https://www.alchemists.io/projects/xdg/versions",
16
+ "documentation_uri" => "https://www.alchemists.io/projects/xdg",
17
+ "label" => "XDG",
18
+ "rubygems_mfa_required" => "true",
19
+ "source_code_uri" => "https://github.com/bkuhlmann/xdg"
20
+ }
21
+
22
+ spec.signing_key = Gem.default_key_path
23
+ spec.cert_chain = [Gem.default_cert_path]
24
+
25
+ spec.required_ruby_version = "~> 3.1"
26
+
27
+ spec.files = Dir["*.gemspec", "lib/**/*"]
28
+ spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
29
+ spec.require_paths = ["lib"]
30
+ 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: 6.0.1
4
+ version: 6.1.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: 2022-01-01 00:00:00.000000000 Z
31
+ date: 2022-01-23 00:00:00.000000000 Z
32
32
  dependencies: []
33
33
  description:
34
34
  email:
@@ -46,11 +46,11 @@ files:
46
46
  - lib/xdg/config.rb
47
47
  - lib/xdg/data.rb
48
48
  - lib/xdg/environment.rb
49
- - lib/xdg/identity.rb
50
49
  - lib/xdg/pair.rb
51
50
  - lib/xdg/paths/combined.rb
52
51
  - lib/xdg/paths/directory.rb
53
52
  - lib/xdg/paths/home.rb
53
+ - xdg.gemspec
54
54
  homepage: https://www.alchemists.io/projects/xdg
55
55
  licenses:
56
56
  - Hippocratic-3.0
@@ -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/versions
60
60
  documentation_uri: https://www.alchemists.io/projects/xdg
61
+ label: XDG
61
62
  rubygems_mfa_required: 'true'
62
63
  source_code_uri: https://github.com/bkuhlmann/xdg
63
64
  post_install_message:
@@ -75,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
76
  - !ruby/object:Gem::Version
76
77
  version: '0'
77
78
  requirements: []
78
- rubygems_version: 3.3.4
79
+ rubygems_version: 3.3.5
79
80
  signing_key:
80
81
  specification_version: 4
81
82
  summary: Provides an implementation of the XDG Base Directory Specification.
metadata.gz.sig CHANGED
Binary file
data/lib/xdg/identity.rb DELETED
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module XDG
4
- # Gem identity information.
5
- module Identity
6
- NAME = "xdg"
7
- LABEL = "XDG"
8
- VERSION = "6.0.1"
9
- VERSION_LABEL = "#{LABEL} #{VERSION}".freeze
10
- end
11
- end