runcom 11.10.0 → 12.0.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: 676b85aed70974d5362022eb451c67e5bda9516462d78d4d7131640c1a8bde0b
4
- data.tar.gz: 2116516fd22ca37b1f6775c959ec8cf9d30b8cd3a480ea5123c4fe02e0d5933d
3
+ metadata.gz: b4981b5052dd7262a43997efe7ca360ec551f2a4cd43516a6d1331527666010e
4
+ data.tar.gz: 3fac644743c1d4f9e221ff4d4a8a42b28c95cf1340e815db4dec9496373b8f1a
5
5
  SHA512:
6
- metadata.gz: b0f5ff968a8a57960933e34abee86d5e258391c924a570c26e58be1ece9f206e47bcfedc8eaf7b5183bfee1bbe91b204d5581b51df6bb46c89bdb06f9964f057
7
- data.tar.gz: 3d4ebcaf17d41d34445045dc5381a0e0856d5e26a29f97f52f71dccfcdd4a84b1e6b2a8fc585fc2d7526c1eaf9712255e6c8484b7e731e764b6f45cca98e6932
6
+ metadata.gz: '018badaf5a7f33dccedb71c8a561c63cb07f1f5325883a9d1f4b69ae74c277b9a87769532c5511d42a429a80535f9057f8a8986f45496b82c7c712bc5ed350d4'
7
+ data.tar.gz: 9ed22af7e16a97abae8f2d82c4fe163744dfacd4e64f406002b1d1d3ce229db2f51431a7dbc299e1ec2ee0b417c2ae6818dc057a9587f6e1253b159889f692b3
checksums.yaml.gz.sig CHANGED
Binary file
data/lib/runcom/cache.rb CHANGED
@@ -12,7 +12,8 @@ module Runcom
12
12
  delegate %i[initial namespace file_name active passive global local all to_s to_str] => :common
13
13
 
14
14
  def initialize path, context: CONTEXT
15
- @common = Paths::Common.new path, context:
15
+ @common = Paths::Common.new(path, context:)
16
+ freeze
16
17
  end
17
18
 
18
19
  def inspect = "#<#{self.class}:#{object_id} #{common}>"
data/lib/runcom/config.rb CHANGED
@@ -12,7 +12,8 @@ module Runcom
12
12
  delegate %i[initial namespace file_name active passive global local all to_s to_str] => :common
13
13
 
14
14
  def initialize path, context: CONTEXT
15
- @common = Paths::Common.new path, context:
15
+ @common = Paths::Common.new(path, context:)
16
+ freeze
16
17
  end
17
18
 
18
19
  def inspect = "#<#{self.class}:#{object_id} #{common}>"
data/lib/runcom/data.rb CHANGED
@@ -12,7 +12,8 @@ module Runcom
12
12
  delegate %i[initial namespace file_name active passive global local all to_s to_str] => :common
13
13
 
14
14
  def initialize path, context: CONTEXT
15
- @common = Paths::Common.new path, context:
15
+ @common = Paths::Common.new(path, context:)
16
+ freeze
16
17
  end
17
18
 
18
19
  def inspect = "#<#{self.class}:#{object_id} #{common}>"
@@ -13,6 +13,7 @@ module Runcom
13
13
  def initialize initial, context: Context.new
14
14
  @initial = Pathname initial
15
15
  @context = context
16
+ freeze
16
17
  end
17
18
 
18
19
  def namespace = initial.parent
@@ -13,6 +13,7 @@ module Runcom
13
13
 
14
14
  def initialize pair, environment = ENV
15
15
  @standard = XDG::Paths::Home.new pair, environment
16
+ freeze
16
17
  end
17
18
 
18
19
  def dynamic
data/lib/runcom/state.rb CHANGED
@@ -12,7 +12,8 @@ module Runcom
12
12
  delegate %i[initial namespace file_name active passive global local all to_s to_str] => :common
13
13
 
14
14
  def initialize path, context: CONTEXT
15
- @common = Paths::Common.new path, context:
15
+ @common = Paths::Common.new(path, context:)
16
+ freeze
16
17
  end
17
18
 
18
19
  def inspect = "#<#{self.class}:#{object_id} #{common}>"
data/runcom.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "runcom"
5
- spec.version = "11.10.0"
5
+ spec.version = "12.0.0"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/runcom"
@@ -22,9 +22,9 @@ Gem::Specification.new do |spec|
22
22
  spec.signing_key = Gem.default_key_path
23
23
  spec.cert_chain = [Gem.default_cert_path]
24
24
 
25
- spec.required_ruby_version = ">= 3.3", "<= 3.4"
26
- spec.add_dependency "refinements", "~> 12.10"
27
- spec.add_dependency "xdg", "~> 8.10"
25
+ spec.required_ruby_version = "~> 3.4"
26
+ spec.add_dependency "refinements", "~> 13.0"
27
+ spec.add_dependency "xdg", "~> 9.0"
28
28
  spec.add_dependency "zeitwerk", "~> 2.7"
29
29
 
30
30
  spec.files = Dir["*.gemspec", "lib/**/*"]
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,11 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runcom
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.10.0
4
+ version: 12.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brooke Kuhlmann
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain:
11
10
  - |
@@ -35,7 +34,7 @@ cert_chain:
35
34
  3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
36
35
  gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
37
36
  -----END CERTIFICATE-----
38
- date: 2024-11-09 00:00:00.000000000 Z
37
+ date: 2024-12-27 00:00:00.000000000 Z
39
38
  dependencies:
40
39
  - !ruby/object:Gem::Dependency
41
40
  name: refinements
@@ -43,28 +42,28 @@ dependencies:
43
42
  requirements:
44
43
  - - "~>"
45
44
  - !ruby/object:Gem::Version
46
- version: '12.10'
45
+ version: '13.0'
47
46
  type: :runtime
48
47
  prerelease: false
49
48
  version_requirements: !ruby/object:Gem::Requirement
50
49
  requirements:
51
50
  - - "~>"
52
51
  - !ruby/object:Gem::Version
53
- version: '12.10'
52
+ version: '13.0'
54
53
  - !ruby/object:Gem::Dependency
55
54
  name: xdg
56
55
  requirement: !ruby/object:Gem::Requirement
57
56
  requirements:
58
57
  - - "~>"
59
58
  - !ruby/object:Gem::Version
60
- version: '8.10'
59
+ version: '9.0'
61
60
  type: :runtime
62
61
  prerelease: false
63
62
  version_requirements: !ruby/object:Gem::Requirement
64
63
  requirements:
65
64
  - - "~>"
66
65
  - !ruby/object:Gem::Version
67
- version: '8.10'
66
+ version: '9.0'
68
67
  - !ruby/object:Gem::Dependency
69
68
  name: zeitwerk
70
69
  requirement: !ruby/object:Gem::Requirement
@@ -79,7 +78,6 @@ dependencies:
79
78
  - - "~>"
80
79
  - !ruby/object:Gem::Version
81
80
  version: '2.7'
82
- description:
83
81
  email:
84
82
  - brooke@alchemists.io
85
83
  executables: []
@@ -95,7 +93,6 @@ files:
95
93
  - lib/runcom/config.rb
96
94
  - lib/runcom/context.rb
97
95
  - lib/runcom/data.rb
98
- - lib/runcom/error.rb
99
96
  - lib/runcom/paths/common.rb
100
97
  - lib/runcom/paths/home.rb
101
98
  - lib/runcom/state.rb
@@ -111,16 +108,12 @@ metadata:
111
108
  label: Runcom
112
109
  rubygems_mfa_required: 'true'
113
110
  source_code_uri: https://github.com/bkuhlmann/runcom
114
- post_install_message:
115
111
  rdoc_options: []
116
112
  require_paths:
117
113
  - lib
118
114
  required_ruby_version: !ruby/object:Gem::Requirement
119
115
  requirements:
120
- - - ">="
121
- - !ruby/object:Gem::Version
122
- version: '3.3'
123
- - - "<="
116
+ - - "~>"
124
117
  - !ruby/object:Gem::Version
125
118
  version: '3.4'
126
119
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -129,8 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
122
  - !ruby/object:Gem::Version
130
123
  version: '0'
131
124
  requirements: []
132
- rubygems_version: 3.5.23
133
- signing_key:
125
+ rubygems_version: 3.6.2
134
126
  specification_version: 4
135
127
  summary: A XDG enhanced run command manager for command line interfaces.
136
128
  test_files: []
metadata.gz.sig CHANGED
Binary file
data/lib/runcom/error.rb DELETED
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Runcom
4
- # The default class for all gem related errors.
5
- class Error < StandardError
6
- end
7
- end