tocer 16.0.0 → 16.0.2

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: 832f39f67b1d9fc4b4be22d308e7526cb16e2b7a4f352102e79636fc1e8299c9
4
- data.tar.gz: 5c7f2a4671d6b2b3f83dad7188d0e75b636911bfb9adc293996c9446d058f5f7
3
+ metadata.gz: 7c4101bef6c5b05804396d1d752cad68e6af2d8d24d0722ed46cc258956c9468
4
+ data.tar.gz: ae88adfbe2e1a73ca95dba4b2554c3d4edd50b2fb45ccf87ac5bd181103fae3f
5
5
  SHA512:
6
- metadata.gz: adbd726db1d8b5dfe370c0436173513189fc730390e2b8dca8dac953aeea15d852425ddb35b7e74b9d7f36fa8ddcf9d501fc8210503538f46b2eaf34145d938a
7
- data.tar.gz: dc21ad6f148f3d1e9566fd842aeee2d9ce48db4a4a0c94b95f601709a2c9b6a9335563f52d18066c443b15d0dd85e68bc55d3a970e4a2879f492ecd64b3c7784
6
+ metadata.gz: 3d7f0ce30f8ffdc5ed9645f3f37cbda06076bd8d82194000af0a88d8ba2aa146af1fd88d97e0b73ccb77e44df964f3993b1a31177b23bead3e8eb25b8376f595
7
+ data.tar.gz: f2463f4ea92b7578c3bab30a01824072602b5db5ef8ee3d388024834cc32c8d442f3419c21463f79d1d79a537782e2d3de5ae4d5acc1ecc9e7de4992a71f8508
checksums.yaml.gz.sig CHANGED
@@ -1,2 +1,2 @@
1
- ����;0��w��G�R ���T%��6��+��;?U��NZw7z8d{��H��z���uKoޤ߉wTϮk�/3P!o��)}���d��1��=�
2
-  ���&(��2V���*�!����)�@3A����U����j��W��c�zla>y$DŽHauR�y��m�����Oi��p᳠����b��6�l�3��btg�ؗ��Y��O��Ƒ(h6��� �Y%�B"zu^Z�d�r�AO6�7�t�������0Un�o�%ZQ�����q��
1
+ S=��>�%����2B�yq��, �*�:*i(�J�_cǃ\b�%j�̰�$�Z�>��C�2w1pL���~��V11��|C2Ӻ{�9"D����Z��"�*a�k���S�!���n3��1�d���1��8�D�_����i1vte�������I��;��;9ΐȟ>��'��r�tRp���/�[����Q�T-+8x��Ѓ>�0ΑH��Y�go����w�_u��㣷E}˴f��ơd(�Ռ��-��n�~����+�p���0 (���9�7G����"�mv��b�U͙b�Տ)��Шx)� �{&�9���H�Z����V݃ј�$1UO[�K��Y8!��S2��7`F���9�:��
2
+ ��) mSb}r4Y#-"
@@ -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
@@ -8,9 +7,7 @@ module Tocer
8
7
  module Actions
9
8
  # Stores table of contents label.
10
9
  class Label < Sod::Action
11
- include Import[:inputs]
12
-
13
- using Refinements::Structs
10
+ include Import[:input]
14
11
 
15
12
  description "Set label."
16
13
 
@@ -18,7 +15,7 @@ module Tocer
18
15
 
19
16
  default { Container[:configuration].label }
20
17
 
21
- def call(label = default) = inputs.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
@@ -8,9 +7,7 @@ module Tocer
8
7
  module Actions
9
8
  # Stores table of contents file patterns.
10
9
  class Pattern < Sod::Action
11
- include Import[:inputs]
12
-
13
- using Refinements::Structs
10
+ include Import[:input]
14
11
 
15
12
  description "Set file patterns."
16
13
 
@@ -18,7 +15,7 @@ module Tocer
18
15
 
19
16
  default { Container[:configuration].patterns }
20
17
 
21
- def call(patterns = default) = inputs.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
@@ -8,9 +7,7 @@ module Tocer
8
7
  module Actions
9
8
  # Stores table of contents root path.
10
9
  class Root < Sod::Action
11
- include Import[:inputs]
12
-
13
- using Refinements::Structs
10
+ include Import[:input]
14
11
 
15
12
  description "Set root directory."
16
13
 
@@ -18,7 +15,7 @@ module Tocer
18
15
 
19
16
  default { Container[:configuration].root_dir }
20
17
 
21
- def call(path = default) = inputs.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
@@ -9,7 +9,7 @@ module Tocer
9
9
  module Commands
10
10
  # Stores table of contents root path.
11
11
  class Upsert < Sod::Command
12
- include Import[:inputs, :kernel]
12
+ include Import[:input, :kernel]
13
13
 
14
14
  handle "upsert"
15
15
 
@@ -24,7 +24,7 @@ module Tocer
24
24
  @runner = runner
25
25
  end
26
26
 
27
- def call = runner.call inputs
27
+ def call = runner.call input
28
28
 
29
29
  private
30
30
 
@@ -21,7 +21,7 @@ module Tocer
21
21
  .add_loader(Etcher::Loaders::YAML.new(self[:defaults_path]))
22
22
  end
23
23
 
24
- register(:inputs, memoize: true) { self[:configuration].dup }
24
+ register(:input, memoize: true) { self[:configuration].dup }
25
25
  register(:defaults_path) { Pathname(__dir__).join("configuration/defaults.yml") }
26
26
  register(:xdg_config) { Runcom::Config.new "tocer/configuration.yml" }
27
27
  register(:specification) { Spek::Loader.call "#{__dir__}/../../tocer.gemspec" }
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.0"
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.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-16 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