runcom 8.5.0 → 8.6.0
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 +8 -6
- data/lib/runcom/state.rb +22 -0
- data/lib/runcom.rb +1 -0
- data/runcom.gemspec +2 -2
- data.tar.gz.sig +5 -1
- metadata +6 -5
- 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: dfbd08d0a9e540634423017850823950045265213723a46e8997c05a8e7f1109
|
4
|
+
data.tar.gz: dec7ee050a2d119c4115ed2bc8587bcd48ff245d4675c84c2c9cdef7feb062a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7aafa3daa9c80db095b5a077da6f5dc6c099c116b3b6c7a8e33843c8c1449d57bd33a9359d1ff790a8c157ccdd5fdf963b7fa3f453d494cb0948cc126bb4395e
|
7
|
+
data.tar.gz: '0093ee10efe8aca440132b2ede58a14a50490d74a9d90294e6de203d30aa2b248bb69352b843b86c0d11245bfeaebb6ada5bd8137c0b261801554ba2219ee8ea'
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.adoc
CHANGED
@@ -17,12 +17,13 @@ toc::[]
|
|
17
17
|
|
18
18
|
* Wraps the link:https://www.alchemists.io/projects/xdg[XDG] implementation which provides access to
|
19
19
|
the following environment variables:
|
20
|
-
**
|
21
|
-
**
|
22
|
-
**
|
23
|
-
**
|
24
|
-
**
|
25
|
-
|
20
|
+
** `$XDG_CACHE_HOME`
|
21
|
+
** `$XDG_CONFIG_HOME`
|
22
|
+
** `$XDG_CONFIG_DIRS`
|
23
|
+
** `$XDG_DATA_HOME`
|
24
|
+
** `$XDG_DATA_DIRS`
|
25
|
+
** `$XDG_STATE_HOME`
|
26
|
+
* Enhances the XDG cache, config, data, and state implementation. For the config, the following is
|
26
27
|
supported:
|
27
28
|
** Supports loading of CLI-specific http://yaml.org[YAML] configuration file.
|
28
29
|
** Supports loading and merging of nested/complex configurations.
|
@@ -63,6 +64,7 @@ instantiate each object individually:
|
|
63
64
|
cache = Runcom::Cache.new "example/data.json"
|
64
65
|
config = Runcom::Config.new "example/configuration.yml"
|
65
66
|
data = Runcom::Data.new "example/store.dat"
|
67
|
+
state = Runcom::State.new "example/history.log"
|
66
68
|
----
|
67
69
|
|
68
70
|
Each of the above objects share the same API:
|
data/lib/runcom/state.rb
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "forwardable"
|
4
|
+
|
5
|
+
module Runcom
|
6
|
+
# A developer friendly wrapper of XDG state.
|
7
|
+
class State
|
8
|
+
extend Forwardable
|
9
|
+
|
10
|
+
DEFAULT_CONTEXT = Context.new xdg: XDG::State
|
11
|
+
|
12
|
+
delegate %i[relative namespace file_name current all inspect] => :common
|
13
|
+
|
14
|
+
def initialize path, context: DEFAULT_CONTEXT
|
15
|
+
@common = Paths::Common.new path, context:
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
|
20
|
+
attr_reader :common
|
21
|
+
end
|
22
|
+
end
|
data/lib/runcom.rb
CHANGED
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 = "8.
|
5
|
+
spec.version = "8.6.0"
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
8
8
|
spec.homepage = "https://www.alchemists.io/projects/runcom"
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
|
25
25
|
spec.required_ruby_version = "~> 3.1"
|
26
26
|
spec.add_dependency "refinements", "~> 9.6"
|
27
|
-
spec.add_dependency "xdg", "~> 6.
|
27
|
+
spec.add_dependency "xdg", "~> 6.6"
|
28
28
|
|
29
29
|
spec.files = Dir["*.gemspec", "lib/**/*"]
|
30
30
|
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
|
data.tar.gz.sig
CHANGED
@@ -1 +1,5 @@
|
|
1
|
-
|
1
|
+
�xv�G�F��uw��Z2��2�
|
2
|
+
����}�i��szk�$�ٙvSg&�O/���
|
3
|
+
�z��A�-O�h�|c
|
4
|
+
�F4xU2>_}��2̮E�6c�G ����e
|
5
|
+
����![]�
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: runcom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.
|
4
|
+
version: 8.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
@@ -28,7 +28,7 @@ cert_chain:
|
|
28
28
|
CxDe2+VuChj4I1nvIHdu+E6XoEVlanUPKmSg6nddhkKn2gC45Kyzh6FZqnzH/CRp
|
29
29
|
RFE=
|
30
30
|
-----END CERTIFICATE-----
|
31
|
-
date: 2022-
|
31
|
+
date: 2022-09-10 00:00:00.000000000 Z
|
32
32
|
dependencies:
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: refinements
|
@@ -50,14 +50,14 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '6.
|
53
|
+
version: '6.6'
|
54
54
|
type: :runtime
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: '6.
|
60
|
+
version: '6.6'
|
61
61
|
description:
|
62
62
|
email:
|
63
63
|
- brooke@alchemists.io
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- lib/runcom/error.rb
|
78
78
|
- lib/runcom/paths/common.rb
|
79
79
|
- lib/runcom/paths/home.rb
|
80
|
+
- lib/runcom/state.rb
|
80
81
|
- runcom.gemspec
|
81
82
|
homepage: https://www.alchemists.io/projects/runcom
|
82
83
|
licenses:
|
@@ -104,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
105
|
- !ruby/object:Gem::Version
|
105
106
|
version: '0'
|
106
107
|
requirements: []
|
107
|
-
rubygems_version: 3.3.
|
108
|
+
rubygems_version: 3.3.22
|
108
109
|
signing_key:
|
109
110
|
specification_version: 4
|
110
111
|
summary: An XDG enhanced run command manager for command line interfaces.
|
metadata.gz.sig
CHANGED
Binary file
|