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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0d436c9b31e04495a19a9f7c5acc14e3e9ff6c367602ff4a9ca07aa10a4ea8d
4
- data.tar.gz: 020ac653eb699ab2fba976834a433d0c87fa28a642c52580e0c38889a1ba8e5a
3
+ metadata.gz: 7c4101bef6c5b05804396d1d752cad68e6af2d8d24d0722ed46cc258956c9468
4
+ data.tar.gz: ae88adfbe2e1a73ca95dba4b2554c3d4edd50b2fb45ccf87ac5bd181103fae3f
5
5
  SHA512:
6
- metadata.gz: 3a519423c227b8e3c839b9a6146e2f53ca390e768f97910860fbdc75e6859d9b0f243cd064037dcfcc8390a7bb82f47bca43f1c842ae3a069a2bf57a337c27ac
7
- data.tar.gz: ff20d97e77e6eb0c05c7ab3234c15949905903ebd8774a8b5c719015966b1b3b878a9dac6b893ee8bb6ded1530071de6a521faad16e245cb5af85f113017971b
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 = default) = input.merge!(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 = default) = input.merge! patterns: Array(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 = default) = input.merge! root_dir: Pathname(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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "tocer"
5
- spec.version = "16.0.1"
5
+ spec.version = "16.0.2"
6
6
  spec.authors = ["Brooke Kuhlmann"]
7
7
  spec.email = ["brooke@alchemists.io"]
8
8
  spec.homepage = "https://alchemists.io/projects/tocer"
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.1
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-19 00:00:00.000000000 Z
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