avm-tools 0.94.1 → 0.97.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/avm/app_src.rb +60 -0
- data/lib/avm/core_ext.rb +4 -0
- data/lib/avm/eac_asciidoctor_base0/deploy.rb +5 -5
- data/lib/avm/eac_webapp_base0/instance.rb +5 -2
- data/lib/avm/eac_webapp_base0/instance/subcommand_parent.rb +24 -0
- data/lib/avm/eac_webapp_base0/runner/data.rb +1 -0
- data/lib/avm/eac_webapp_base0/runner/data/dump.rb +1 -1
- data/lib/avm/eac_webapp_base0/runner/data/load.rb +1 -1
- data/lib/avm/git/issue/complete/_test.rb +2 -2
- data/lib/avm/instances/base.rb +6 -12
- data/lib/avm/instances/base/entry_keys.rb +17 -0
- data/lib/{eac_launcher → avm/launcher}/instances/error.rb +0 -0
- data/lib/avm/launcher/instances/runner_helper.rb +42 -0
- data/lib/avm/patches/class.rb +4 -0
- data/lib/avm/patches/eac_ruby_gems_utils.rb +4 -0
- data/lib/avm/patches/eac_ruby_gems_utils/gem.rb +2 -2
- data/lib/avm/patches/object.rb +4 -0
- data/lib/avm/patches/object/fs_cache.rb +16 -0
- data/lib/avm/ruby/bundler.rb +11 -0
- data/lib/avm/ruby/bundler/incompatible_parser.rb +25 -0
- data/lib/avm/ruby/bundler/incompatible_parser/depends_on.rb +25 -0
- data/lib/avm/ruby/bundler/incompatible_parser/gem_conflict.rb +39 -0
- data/lib/avm/ruby/bundler/incompatible_parser/in_gemfile.rb +19 -0
- data/lib/avm/ruby/bundler/incompatible_parser/line_buffer.rb +73 -0
- data/lib/avm/ruby/bundler/incompatible_parser/line_factory.rb +31 -0
- data/lib/avm/ruby/bundler/incompatible_parser/line_parser_base.rb +19 -0
- data/lib/avm/ruby/bundler/incompatible_parser/version_requirement.rb +26 -0
- data/lib/avm/ruby/gems/generator.rb +1 -5
- data/lib/avm/ruby/rubocop/_configured.rb +2 -2
- data/lib/avm/tools/runner/{local_project.rb → app_src.rb} +3 -3
- data/lib/avm/tools/runner/{local_project → app_src}/eac_asciidoctor_base0.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/eac_asciidoctor_base0/build.rb +19 -7
- data/lib/avm/tools/runner/{local_project → app_src}/eac_writings_base0.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/eac_writings_base0/build_chapters.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/eac_writings_base0/build_single.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/eac_writings_base0/info.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/info.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/ruby.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/ruby/bundler.rb +4 -8
- data/lib/avm/tools/runner/{local_project → app_src}/ruby/bundler/gemfile_lock.rb +11 -14
- data/lib/avm/tools/runner/app_src/ruby/bundler/incompatible.rb +84 -0
- data/lib/avm/tools/runner/{local_project → app_src}/test.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/update.rb +1 -1
- data/lib/avm/tools/runner/{local_project → app_src}/version_bump.rb +1 -1
- data/lib/avm/tools/runner/launcher.rb +3 -6
- data/lib/avm/tools/runner/launcher/instances.rb +10 -21
- data/lib/avm/tools/runner/launcher/projects.rb +10 -18
- data/lib/avm/tools/runner/launcher/publish.rb +18 -26
- data/lib/avm/tools/runner/ruby/rubocop.rb +9 -25
- data/lib/avm/tools/runner/self.rb +7 -15
- data/lib/avm/tools/runner/self/docker.rb +1 -1
- data/lib/avm/tools/version.rb +1 -1
- data/lib/eac_launcher/instances.rb +1 -1
- data/template/avm/ruby/gems/generator/static/spec/rubocop_spec.rb +1 -5
- data/template/avm/ruby/gems/generator/static/spec/spec_helper.rb +2 -0
- data/vendor/avm-apps/avm-apps.gemspec +1 -1
- data/vendor/avm-apps/lib/avm/apps/sources/configuration.rb +57 -0
- data/vendor/avm-apps/lib/avm/apps/sources/configuration/_locale.rb +18 -0
- data/vendor/avm-apps/lib/avm/apps/sources/configuration/_rubocop.rb +26 -0
- data/vendor/avm-apps/lib/avm/apps/sources/configuration/_tests.rb +29 -0
- data/vendor/avm-apps/lib/avm/apps/version.rb +1 -1
- data/vendor/avm-apps/spec/rubocop_spec.rb +1 -5
- data/vendor/avm-apps/spec/spec_helper.rb +3 -0
- data/vendor/avm-eac_asciidoctor_base0/Gemfile +5 -0
- data/vendor/avm-eac_asciidoctor_base0/avm-eac_asciidoctor_base0.gemspec +19 -0
- data/{lib/avm/local_projects.rb → vendor/avm-eac_asciidoctor_base0/lib/avm/eac_asciidoctor_base0.rb} +1 -1
- data/{lib/avm/eac_asciidoctor_base0/project.rb → vendor/avm-eac_asciidoctor_base0/lib/avm/eac_asciidoctor_base0/sources.rb} +2 -4
- data/vendor/avm-eac_asciidoctor_base0/lib/avm/eac_asciidoctor_base0/sources/base.rb +15 -0
- data/vendor/avm-eac_asciidoctor_base0/lib/avm/eac_asciidoctor_base0/sources/build.rb +49 -0
- data/vendor/avm-eac_asciidoctor_base0/lib/avm/eac_asciidoctor_base0/sources/build/file.rb +30 -0
- data/vendor/avm-eac_asciidoctor_base0/lib/avm/eac_asciidoctor_base0/version.rb +7 -0
- data/vendor/avm-eac_asciidoctor_base0/spec/rubocop_spec.rb +3 -0
- data/vendor/avm-eac_asciidoctor_base0/spec/spec_helper.rb +102 -0
- data/vendor/eac_cli/eac_cli.gemspec +1 -1
- data/vendor/eac_cli/lib/eac_cli/definition/base_option.rb +5 -1
- data/vendor/eac_cli/lib/eac_cli/docopt/doc_builder.rb +3 -1
- data/vendor/eac_cli/lib/eac_cli/runner/context.rb +2 -1
- data/vendor/eac_cli/lib/eac_cli/runner/instance_methods.rb +8 -1
- data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
- data/vendor/eac_cli/spec/rubocop_spec.rb +1 -5
- data/vendor/eac_cli/spec/spec_helper.rb +3 -0
- data/vendor/eac_docker/eac_docker.gemspec +1 -1
- data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
- data/vendor/eac_docker/spec/rubocop_spec.rb +1 -5
- data/vendor/eac_docker/spec/spec_helper.rb +3 -0
- data/vendor/eac_git/eac_git.gemspec +2 -1
- data/vendor/eac_git/lib/eac_git/local.rb +4 -0
- data/vendor/eac_git/lib/eac_git/local/commit.rb +53 -0
- data/vendor/eac_git/lib/eac_git/local/commit/changed_file.rb +46 -0
- data/vendor/eac_git/lib/eac_git/local/commit/diff_tree_line.rb +32 -0
- data/vendor/eac_git/lib/eac_git/rspec.rb +6 -1
- data/{lib/avm/git/spec_helper.rb → vendor/eac_git/lib/eac_git/rspec/stubbed_git_local_repo.rb} +16 -13
- data/vendor/eac_git/lib/eac_git/version.rb +1 -1
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec.rb +13 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.source.out +1 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/add.target.yaml +7 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.source.out +1 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/modify.target.yaml +7 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.source.out +1 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/remove.target.yaml +7 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.source.out +2 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename.target.yaml +13 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.source.out +2 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit/diff_tree_line_spec_files/rename_modify.target.yaml +13 -0
- data/vendor/eac_git/spec/lib/eac_git/local/commit_spec.rb +58 -0
- data/vendor/eac_git/spec/rubocop_spec.rb +1 -5
- data/vendor/eac_git/spec/spec_helper.rb +3 -0
- data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/input.rb +36 -0
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/runner_with/output.rb +58 -0
- data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
- data/vendor/eac_ruby_base0/spec/lib/eac_ruby_base0/runner_with/output_spec.rb +81 -0
- data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -5
- data/vendor/eac_ruby_base0/spec/spec_helper.rb +3 -0
- data/vendor/eac_ruby_gems_utils/eac_ruby_gems_utils.gemspec +4 -3
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/base.rb +7 -10
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/tests/multiple.rb +9 -2
- data/vendor/eac_ruby_gems_utils/lib/eac_ruby_gems_utils/version.rb +1 -1
- data/vendor/eac_ruby_gems_utils/spec/code/rubocop_check_spec.rb +1 -5
- data/vendor/eac_ruby_gems_utils/spec/spec_helper.rb +3 -0
- data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +2 -1
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/filesystem_cache.rb +6 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/logs.rb +63 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/inflector.rb +9 -1
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/listable/list.rb +3 -2
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/kernel/nyi.rb +4 -2
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/regexp/to_parser.rb +10 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/inflector.rb +4 -2
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/regexp_parser.rb +34 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider.rb +10 -29
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/settings_provider/setting_value.rb +69 -0
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/simple_cache.rb +18 -5
- data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
- data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/settings_provider_spec.rb +8 -0
- data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/simple_cache_spec.rb +9 -0
- data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -5
- data/vendor/eac_ruby_utils/spec/spec_helper.rb +3 -0
- metadata +90 -39
- data/lib/avm/eac_asciidoctor_base0/build.rb +0 -47
- data/lib/avm/eac_asciidoctor_base0/build/file.rb +0 -28
- data/lib/avm/instances/configuration.rb +0 -55
- data/lib/avm/instances/configuration/_locale.rb +0 -16
- data/lib/avm/instances/configuration/_rubocop.rb +0 -24
- data/lib/avm/instances/configuration/_tests.rb +0 -27
- data/lib/avm/local_projects/instance.rb +0 -62
- data/lib/eac_launcher/instances/runner_helper.rb +0 -42
- data/vendor/eac_cli/lib/eac_cli/runner_with/output_file.rb +0 -30
- data/vendor/eac_cli/spec/lib/eac_cli/runner_with/output_file_spec.rb +0 -53
@@ -0,0 +1,84 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/fs_cache'
|
4
|
+
require 'avm/ruby/bundler/incompatible_parser'
|
5
|
+
require 'eac_ruby_base0/core_ext'
|
6
|
+
|
7
|
+
module Avm
|
8
|
+
module Tools
|
9
|
+
class Runner
|
10
|
+
class AppSrc
|
11
|
+
class Ruby
|
12
|
+
class Bundler
|
13
|
+
class Incompatible
|
14
|
+
runner_with :help do
|
15
|
+
desc 'Identify incompatible gems in a "Gemfile.lock" file.'
|
16
|
+
bool_opt '-l', '--last', 'Process the last \"bundle update\" result.'
|
17
|
+
end
|
18
|
+
|
19
|
+
def run
|
20
|
+
infov 'Cache path', fs_cache.content_path
|
21
|
+
infov 'Cached?', fs_cache.cached?
|
22
|
+
parser.gems_in_conflict.each do |gem_in_conflict|
|
23
|
+
print_gem_in_conflict(gem_in_conflict)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def bundle_update
|
30
|
+
infom 'Running "bundle update"...'
|
31
|
+
instance.ruby_gem.bundle('update').execute[:stdout]
|
32
|
+
end
|
33
|
+
|
34
|
+
def content_path
|
35
|
+
fs_cache.write(bundle_update) unless fs_cache.cached? && parsed.last?
|
36
|
+
fs_cache.content_path
|
37
|
+
end
|
38
|
+
|
39
|
+
def fs_cache_uncached
|
40
|
+
::Avm.fs_cache.child(self.class.name.variableize)
|
41
|
+
.child(instance.path.to_s.variableize)
|
42
|
+
end
|
43
|
+
|
44
|
+
def gem_title(gem_in_conflict)
|
45
|
+
gem_in_conflict.gem_name
|
46
|
+
end
|
47
|
+
|
48
|
+
def instance
|
49
|
+
runner_context.call(:instance)
|
50
|
+
end
|
51
|
+
|
52
|
+
def parser_uncached
|
53
|
+
::Avm::Ruby::Bundler::IncompatibleParser.new(content_path)
|
54
|
+
end
|
55
|
+
|
56
|
+
def print_gem_in_conflict(gem_in_conflict)
|
57
|
+
infov 'Gem', gem_title(gem_in_conflict)
|
58
|
+
gem_in_conflict.versions_requirements.each do |requirement|
|
59
|
+
print_requirement(requirement)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def print_requirement(req)
|
64
|
+
infov ' ' + requirement_title(req), requirement_value(req)
|
65
|
+
end
|
66
|
+
|
67
|
+
def requirement_stack(req)
|
68
|
+
req.stack.map { |d| "#{d.gem_name} (#{d.version})" }.join(' > '.green)
|
69
|
+
end
|
70
|
+
|
71
|
+
def requirement_title(req)
|
72
|
+
req.requirements_source.if_present('*')
|
73
|
+
end
|
74
|
+
|
75
|
+
def requirement_value(req)
|
76
|
+
requirement_stack(req)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -1,16 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
4
|
-
require 'eac_ruby_utils/core_ext'
|
3
|
+
require 'avm/core_ext'
|
5
4
|
|
6
5
|
module Avm
|
7
6
|
module Tools
|
8
7
|
class Runner
|
9
|
-
class Launcher
|
8
|
+
class Launcher
|
10
9
|
require_sub __FILE__
|
11
|
-
|
12
|
-
|
13
|
-
runner_definition do
|
10
|
+
runner_with :help, :subcommands do
|
14
11
|
desc 'Utilities to deploy applications and libraries.'
|
15
12
|
subcommands
|
16
13
|
end
|
@@ -1,28 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
3
|
+
require 'avm/launcher/instances/runner_helper'
|
4
4
|
|
5
5
|
module Avm
|
6
6
|
module Tools
|
7
7
|
class Runner
|
8
|
-
class Launcher
|
9
|
-
class Instances < ::
|
10
|
-
|
11
|
-
Mostra informações sobre instâncias.
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
Options:
|
18
|
-
-h --help Show this screen.
|
19
|
-
--all Get all instances.
|
20
|
-
--recache Rewrite instances cache.
|
21
|
-
|
22
|
-
DOCOPT
|
8
|
+
class Launcher
|
9
|
+
class Instances < ::Avm::Launcher::Instances::RunnerHelper
|
10
|
+
runner_with :help do
|
11
|
+
desc 'Mostra informações sobre instâncias.'
|
12
|
+
bool_opt '--recache', 'Rewrite instances cache.'
|
13
|
+
bool_opt '--all', 'Get all instances.'
|
14
|
+
pos_arg :instance_path, repeat: true, optional: true
|
15
|
+
end
|
23
16
|
|
24
17
|
def run
|
25
|
-
::EacLauncher::Context.current.recache =
|
18
|
+
::EacLauncher::Context.current.recache = parsed.recache?
|
26
19
|
instances.each { |i| show_instance(i) }
|
27
20
|
end
|
28
21
|
|
@@ -34,10 +27,6 @@ module Avm
|
|
34
27
|
infov(' * Git current revision', instance.options.git_current_revision)
|
35
28
|
infov(' * Git publish remote', instance.options.git_publish_remote)
|
36
29
|
end
|
37
|
-
|
38
|
-
def instance_path
|
39
|
-
options['<instance_path>']
|
40
|
-
end
|
41
30
|
end
|
42
31
|
end
|
43
32
|
end
|
@@ -1,29 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'eac_launcher/context'
|
4
|
-
require '
|
4
|
+
require 'avm/launcher/instances/runner_helper'
|
5
5
|
|
6
6
|
module Avm
|
7
7
|
module Tools
|
8
8
|
class Runner
|
9
|
-
class Launcher
|
10
|
-
class Projects < ::
|
11
|
-
|
12
|
-
Shows available projects.
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
__PROGRAM__ -h | --help
|
17
|
-
|
18
|
-
Options:
|
19
|
-
-h --help Show this screen.
|
20
|
-
-i --instances Show instances.
|
21
|
-
--recache Rewrite instances cache.
|
22
|
-
|
23
|
-
DOCOPT
|
9
|
+
class Launcher
|
10
|
+
class Projects < ::Avm::Launcher::Instances::RunnerHelper
|
11
|
+
runner_with :help do
|
12
|
+
desc 'Shows available projects.'
|
13
|
+
bool_opt '--recache', 'Rewrite instances cache.'
|
14
|
+
bool_opt '-i', '--instances', 'Show instances.'
|
15
|
+
end
|
24
16
|
|
25
17
|
def run
|
26
|
-
::EacLauncher::Context.current.recache =
|
18
|
+
::EacLauncher::Context.current.recache = parsed.recache?
|
27
19
|
::EacLauncher::Context.current.projects.each do |p|
|
28
20
|
show_project(p)
|
29
21
|
end
|
@@ -33,7 +25,7 @@ module Avm
|
|
33
25
|
|
34
26
|
def show_project(project)
|
35
27
|
puts project_label(project)
|
36
|
-
return unless
|
28
|
+
return unless parsed.instances?
|
37
29
|
|
38
30
|
project.instances.each do |i|
|
39
31
|
puts " * #{instance_label(i)}"
|
@@ -1,33 +1,26 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
3
|
+
require 'avm/launcher/instances/runner_helper'
|
4
4
|
|
5
5
|
module Avm
|
6
6
|
module Tools
|
7
7
|
class Runner
|
8
|
-
class Launcher
|
9
|
-
class Publish < ::
|
10
|
-
|
11
|
-
Publica projetos ou instâncias.
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
--all Publish all instances.
|
22
|
-
-d --dry-run "Dry run" publishing.
|
23
|
-
--pending Publish only pending.
|
24
|
-
--recache Rewrite instances cache.
|
25
|
-
--run Confirm publishing.
|
26
|
-
|
27
|
-
DOCOPT
|
8
|
+
class Launcher
|
9
|
+
class Publish < ::Avm::Launcher::Instances::RunnerHelper
|
10
|
+
runner_with :help do
|
11
|
+
desc 'Publica projetos ou instâncias.'
|
12
|
+
bool_opt '--all', 'Get all instances.'
|
13
|
+
bool_opt '-d', '--dry-run', '"Dry run" publishing.'
|
14
|
+
bool_opt '--new', 'Publish projects not published before.'
|
15
|
+
bool_opt '--pending', 'Publish only pending.'
|
16
|
+
bool_opt '--recache', 'Rewrite instances cache.'
|
17
|
+
bool_opt '--run', 'Confirm publishing.'
|
18
|
+
arg_opt '-s', '--stereotype', 'Publish only for stereotype <stereotype>.'
|
19
|
+
pos_arg :instance_path, repeat: true, optional: true
|
20
|
+
end
|
28
21
|
|
29
22
|
def run
|
30
|
-
::EacLauncher::Context.current.recache =
|
23
|
+
::EacLauncher::Context.current.recache = parsed.run?
|
31
24
|
build_publish_options
|
32
25
|
instances.each do |i|
|
33
26
|
next unless i.options.publishable?
|
@@ -39,7 +32,7 @@ module Avm
|
|
39
32
|
private
|
40
33
|
|
41
34
|
def dry_run?
|
42
|
-
|
35
|
+
parsed.dry_run?
|
43
36
|
end
|
44
37
|
|
45
38
|
def instance_method
|
@@ -51,12 +44,11 @@ module Avm
|
|
51
44
|
end
|
52
45
|
|
53
46
|
def publish_options
|
54
|
-
{ new:
|
55
|
-
confirm: run? }
|
47
|
+
{ new: parsed.new?, stereotype: parsed.stereotype?, confirm: run? }
|
56
48
|
end
|
57
49
|
|
58
50
|
def run?
|
59
|
-
|
51
|
+
parsed.run? && !dry_run?
|
60
52
|
end
|
61
53
|
end
|
62
54
|
end
|
@@ -1,43 +1,27 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'avm/core_ext'
|
3
4
|
require 'avm/ruby/rubocop'
|
4
|
-
require 'eac_ruby_utils/console/docopt_runner'
|
5
|
-
require 'eac_ruby_utils/core_ext'
|
6
5
|
|
7
6
|
module Avm
|
8
7
|
module Tools
|
9
8
|
class Runner
|
10
9
|
class Ruby
|
11
|
-
class Rubocop
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
Usage:
|
19
|
-
__PROGRAM__ [options] [<rubocop-args>...]
|
20
|
-
__PROGRAM__ -h | --help
|
21
|
-
|
22
|
-
Options:
|
23
|
-
-h --help Show this screen.
|
24
|
-
-C=<path> Caminho para executar o Rubocop [default: .].
|
25
|
-
DOCOPT
|
10
|
+
class Rubocop
|
11
|
+
runner_with :help do
|
12
|
+
desc 'Runs Rubocop (https://rubygems.org/gems/rubocop).'
|
13
|
+
arg_opt '-C', 'Caminho para executar o Rubocop [default: .].'
|
14
|
+
pos_arg :rubocop_args, repeat: true, optional: true
|
15
|
+
end
|
26
16
|
|
27
17
|
def run
|
28
|
-
::Avm::Ruby::Rubocop.new(path, rubocop_args).run
|
18
|
+
::Avm::Ruby::Rubocop.new(path, parsed.rubocop_args).run
|
29
19
|
end
|
30
20
|
|
31
21
|
private
|
32
22
|
|
33
23
|
def path
|
34
|
-
::Pathname.new(
|
35
|
-
end
|
36
|
-
|
37
|
-
def rubocop_args
|
38
|
-
r = options.fetch('<rubocop-args>')
|
39
|
-
r.shift if r.first == '--'
|
40
|
-
r
|
24
|
+
::Pathname.new(parsed.c || '.').expand_path
|
41
25
|
end
|
42
26
|
end
|
43
27
|
end
|
@@ -1,25 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require '
|
4
|
-
require 'eac_ruby_utils/require_sub'
|
3
|
+
require 'avm/core_ext'
|
5
4
|
require 'avm/self'
|
6
5
|
|
7
6
|
module Avm
|
8
7
|
module Tools
|
9
8
|
class Runner
|
10
|
-
class Self
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
Usage:
|
17
|
-
__PROGRAM__ [options] __SUBCOMMANDS__
|
18
|
-
__PROGRAM__ -h | --help
|
19
|
-
|
20
|
-
Options:
|
21
|
-
-h --help Show this screen.
|
22
|
-
DOCOPT
|
9
|
+
class Self
|
10
|
+
require_sub __FILE__
|
11
|
+
runner_with :help, :subcommands do
|
12
|
+
desc 'Utilities for self avm-tools.'
|
13
|
+
subcommands
|
14
|
+
end
|
23
15
|
|
24
16
|
def instance
|
25
17
|
::Avm::Self.instance
|
data/lib/avm/tools/version.rb
CHANGED
@@ -1,7 +1,3 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
RSpec.describe ::RuboCop, slow: true do
|
6
|
-
include_examples 'rubocop_check', ::File.expand_path('..', __dir__)
|
7
|
-
end
|
3
|
+
::EacRubyGemSupport::Rspec.default.describe_rubocop
|
@@ -97,4 +97,6 @@ RSpec.configure do |config|
|
|
97
97
|
# # test failures related to randomization by passing the same `--seed` value
|
98
98
|
# # as the one that triggered the failure.
|
99
99
|
# Kernel.srand config.seed
|
100
|
+
require 'eac_ruby_gem_support/rspec'
|
101
|
+
::EacRubyGemSupport::Rspec.setup(::File.expand_path('..', __dir__))
|
100
102
|
end
|