runcom 11.10.0 → 12.0.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/runcom/cache.rb +2 -1
- data/lib/runcom/config.rb +2 -1
- data/lib/runcom/data.rb +2 -1
- data/lib/runcom/paths/common.rb +1 -0
- data/lib/runcom/paths/home.rb +1 -0
- data/lib/runcom/state.rb +2 -1
- data/runcom.gemspec +4 -4
- data.tar.gz.sig +0 -0
- metadata +8 -16
- metadata.gz.sig +0 -0
- data/lib/runcom/error.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4981b5052dd7262a43997efe7ca360ec551f2a4cd43516a6d1331527666010e
|
4
|
+
data.tar.gz: 3fac644743c1d4f9e221ff4d4a8a42b28c95cf1340e815db4dec9496373b8f1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
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
|
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/paths/common.rb
CHANGED
data/lib/runcom/paths/home.rb
CHANGED
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
|
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 = "
|
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 = "
|
26
|
-
spec.add_dependency "refinements", "~>
|
27
|
-
spec.add_dependency "xdg", "~>
|
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:
|
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-
|
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: '
|
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: '
|
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: '
|
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: '
|
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.
|
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
|