tocer 16.0.1 → 16.0.2
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/tocer/cli/actions/label.rb +1 -4
- data/lib/tocer/cli/actions/pattern.rb +1 -4
- data/lib/tocer/cli/actions/root.rb +1 -4
- data/tocer.gemspec +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- 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: 7c4101bef6c5b05804396d1d752cad68e6af2d8d24d0722ed46cc258956c9468
|
|
4
|
+
data.tar.gz: ae88adfbe2e1a73ca95dba4b2554c3d4edd50b2fb45ccf87ac5bd181103fae3f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d7f0ce30f8ffdc5ed9645f3f37cbda06076bd8d82194000af0a88d8ba2aa146af1fd88d97e0b73ccb77e44df964f3993b1a31177b23bead3e8eb25b8376f595
|
|
7
|
+
data.tar.gz: f2463f4ea92b7578c3bab30a01824072602b5db5ef8ee3d388024834cc32c8d442f3419c21463f79d1d79a537782e2d3de5ae4d5acc1ecc9e7de4992a71f8508
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "refinements/structs"
|
|
4
3
|
require "sod"
|
|
5
4
|
|
|
6
5
|
module Tocer
|
|
@@ -10,15 +9,13 @@ module Tocer
|
|
|
10
9
|
class Label < Sod::Action
|
|
11
10
|
include Import[:input]
|
|
12
11
|
|
|
13
|
-
using Refinements::Structs
|
|
14
|
-
|
|
15
12
|
description "Set label."
|
|
16
13
|
|
|
17
14
|
on %w[-l --label], argument: "[TEXT]"
|
|
18
15
|
|
|
19
16
|
default { Container[:configuration].label }
|
|
20
17
|
|
|
21
|
-
def call(label =
|
|
18
|
+
def call(label = nil) = input.label = label || default
|
|
22
19
|
end
|
|
23
20
|
end
|
|
24
21
|
end
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "refinements/structs"
|
|
4
3
|
require "sod"
|
|
5
4
|
|
|
6
5
|
module Tocer
|
|
@@ -10,15 +9,13 @@ module Tocer
|
|
|
10
9
|
class Pattern < Sod::Action
|
|
11
10
|
include Import[:input]
|
|
12
11
|
|
|
13
|
-
using Refinements::Structs
|
|
14
|
-
|
|
15
12
|
description "Set file patterns."
|
|
16
13
|
|
|
17
14
|
on %w[-p --patterns], argument: "[a,b,c]"
|
|
18
15
|
|
|
19
16
|
default { Container[:configuration].patterns }
|
|
20
17
|
|
|
21
|
-
def call(patterns =
|
|
18
|
+
def call(patterns = nil) = input.patterns = Array(patterns || default)
|
|
22
19
|
end
|
|
23
20
|
end
|
|
24
21
|
end
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "refinements/structs"
|
|
4
3
|
require "sod"
|
|
5
4
|
|
|
6
5
|
module Tocer
|
|
@@ -10,15 +9,13 @@ module Tocer
|
|
|
10
9
|
class Root < Sod::Action
|
|
11
10
|
include Import[:input]
|
|
12
11
|
|
|
13
|
-
using Refinements::Structs
|
|
14
|
-
|
|
15
12
|
description "Set root directory."
|
|
16
13
|
|
|
17
14
|
on %w[-r --root], argument: "[PATH]"
|
|
18
15
|
|
|
19
16
|
default { Container[:configuration].root_dir }
|
|
20
17
|
|
|
21
|
-
def call(path =
|
|
18
|
+
def call(path = nil) = input.root_dir = Pathname(path || default)
|
|
22
19
|
end
|
|
23
20
|
end
|
|
24
21
|
end
|
data/tocer.gemspec
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tocer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 16.0.
|
|
4
|
+
version: 16.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
|
35
35
|
3n5C8/6Zh9DYTkpcwPSuIfAga6wf4nXc9m6JAw8AuMLaiWN/r/2s4zJsUHYERJEu
|
|
36
36
|
gZGm4JqtuSg8pYjPeIJxS960owq+SfuC+jxqmRA54BisFCv/0VOJi7tiJVY=
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date: 2023-06-
|
|
38
|
+
date: 2023-06-22 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: cogger
|
metadata.gz.sig
CHANGED
|
Binary file
|