eac_cli 0.44.3 → 0.44.4

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: 7e743c42c782689bd51e0f38150ae4e339b8d4081188682e0418a1775c37bb59
4
- data.tar.gz: 88f5176481933c16a1ed01c8150f144b1c3c77ed867c581fb1f8eaba0e09a485
3
+ metadata.gz: 5aae127a0ef22cbef93fd8299b0d691e9506fd02d3d0c2ee634f003e625ec20d
4
+ data.tar.gz: a231aa71a08ef0ea12614059931cf624140062a27488a393af1d346ec0df5133
5
5
  SHA512:
6
- metadata.gz: d689ee20be52e33891b18e884b9749f85e09a359afceec1b9a66c293b26ae7f812a4b7bd2d1f54375a8957b8a4d9eb8d9d38b6a01d63492f0e5fd573c71f2456
7
- data.tar.gz: b6acede36c5921c006f1a4fbd15d4780655e160c4d23fa32bf4fb5d65449a3282929ecb101a4a4db7af1af0dc5cd8e6ebe14d057d4cdc5f4f51e332626ced7e8
6
+ metadata.gz: c1a82720ef8af56dc99516758bd1430ba2abf7bd37d9260d73f8e5f4b821e3e900659558cb2b544d6993982e648da7bfad9edb7fc576e6222206d32fc4faf011
7
+ data.tar.gz: 53695c7a16941a0ba7de2171de89cba08977716dd60fe22d5428c8a6a576429a3878c757dbd2a10010ec0281eb5f97cc2b99a190dbb3f349ce2daf8896bbb331
@@ -2,8 +2,6 @@
2
2
 
3
3
  module EacCli
4
4
  class Config < ::SimpleDelegator
5
- require_sub __FILE__
6
-
7
5
  def entry(path, options = {})
8
6
  ::EacCli::Config::Entry.new(self, path, options)
9
7
  end
@@ -4,8 +4,6 @@ module EacCli
4
4
  class Definition
5
5
  # @abstract
6
6
  class Option < ::EacCli::Definition::OptionOrPositional
7
- require_sub __FILE__
8
-
9
7
  class << self
10
8
  # @param args [Enumerable<String>]
11
9
  # @return [EacCli::Definition::Option]
@@ -2,8 +2,6 @@
2
2
 
3
3
  module EacCli
4
4
  class Definition
5
- require_sub __FILE__
6
-
7
5
  MAIN_ALTERNATIVE_KEY = :main
8
6
  SUBCOMMAND_NAME_ARG = 'subcommand'
9
7
  SUBCOMMAND_ARGS_ARG = 'subcommand_args'
@@ -2,7 +2,6 @@
2
2
 
3
3
  module EacCli
4
4
  class OldConfigs
5
- require_sub __FILE__
6
5
  enable_speaker
7
6
 
8
7
  class << self
@@ -2,7 +2,6 @@
2
2
 
3
3
  module EacCli
4
4
  class Parser
5
- require_sub __FILE__
6
5
  enable_simple_cache
7
6
  common_constructor :definition, :argv
8
7
 
@@ -2,7 +2,6 @@
2
2
 
3
3
  module EacCli
4
4
  module Runner
5
- require_sub __FILE__
6
5
  extend ::ActiveSupport::Concern
7
6
 
8
7
  class << self
@@ -58,8 +58,6 @@ module EacCli
58
58
  def for_all_answers_uncached
59
59
  {}
60
60
  end
61
-
62
- require_sub __FILE__
63
61
  end
64
62
  end
65
63
  end
@@ -3,8 +3,6 @@
3
3
  module EacCli
4
4
  module RunnerWith
5
5
  module OutputItem
6
- require_sub __FILE__
7
-
8
6
  FORMATS = %w[asciidoc csv yaml].freeze
9
7
 
10
8
  common_concern do
@@ -3,8 +3,6 @@
3
3
  module EacCli
4
4
  module RunnerWith
5
5
  module OutputList
6
- require_sub __FILE__
7
-
8
6
  FORMATS = {
9
7
  'csv' => ::EacCli::RunnerWith::OutputList::CsvFormatter,
10
8
  'tty' => ::EacCli::RunnerWith::OutputList::TtyFormatter,
@@ -3,8 +3,6 @@
3
3
  module EacCli
4
4
  module RunnerWith
5
5
  module Subcommands
6
- require_sub __FILE__
7
-
8
6
  class << self
9
7
  delegate :runner?, to: :'::EacCli::Runner'
10
8
 
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'active_support/hash_with_indifferent_access'
4
- require 'ostruct'
5
4
 
6
5
  module EacCli
7
6
  class Speaker
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacCli
4
- VERSION = '0.44.3'
4
+ VERSION = '0.44.4'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.3
4
+ version: 0.44.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-12-04 00:00:00.000000000 Z
11
+ date: 2026-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -53,7 +53,7 @@ dependencies:
53
53
  version: '0.128'
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
- version: 0.128.5
56
+ version: 0.128.6
57
57
  type: :runtime
58
58
  prerelease: false
59
59
  version_requirements: !ruby/object:Gem::Requirement
@@ -63,7 +63,7 @@ dependencies:
63
63
  version: '0.128'
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
- version: 0.128.5
66
+ version: 0.128.6
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: tty-table
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -92,8 +92,8 @@ dependencies:
92
92
  - - "~>"
93
93
  - !ruby/object:Gem::Version
94
94
  version: '0.12'
95
- description:
96
- email:
95
+ description:
96
+ email:
97
97
  executables: []
98
98
  extensions: []
99
99
  extra_rdoc_files: []
@@ -149,7 +149,6 @@ files:
149
149
  - lib/eac_cli/runner/exit.rb
150
150
  - lib/eac_cli/runner/for_context.rb
151
151
  - lib/eac_cli/runner/instance_methods.rb
152
- - lib/eac_cli/runner_with.rb
153
152
  - lib/eac_cli/runner_with/confirmation.rb
154
153
  - lib/eac_cli/runner_with/confirmation/input_result.rb
155
154
  - lib/eac_cli/runner_with/help.rb
@@ -180,10 +179,10 @@ files:
180
179
  - lib/eac_cli/speaker/options.rb
181
180
  - lib/eac_cli/speaker/request_from_list.rb
182
181
  - lib/eac_cli/version.rb
183
- homepage:
182
+ homepage:
184
183
  licenses: []
185
184
  metadata: {}
186
- post_install_message:
185
+ post_install_message:
187
186
  rdoc_options: []
188
187
  require_paths:
189
188
  - lib
@@ -198,8 +197,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
197
  - !ruby/object:Gem::Version
199
198
  version: '0'
200
199
  requirements: []
201
- rubygems_version: 3.1.6
202
- signing_key:
200
+ rubygems_version: 3.4.19
201
+ signing_key:
203
202
  specification_version: 4
204
203
  summary: Utilities to build CLI applications with Ruby.
205
204
  test_files: []
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module EacCli
4
- module RunnerWith
5
- require_sub __FILE__
6
- end
7
- end