avm-tools 0.131.0 → 0.132.0

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: 6b949d5c86fddc27e78893e2d7efd3b73cc99648f8a601c6a27e15a37027cd90
4
- data.tar.gz: 56c0f0198f3000ffb13308a8774198ce1fc20ac2f89a442e5492be83f96a0e1e
3
+ metadata.gz: 9648969bee993364d2ece3102586eccf9eafcd7a8edfde0960cab80bf06f3fe3
4
+ data.tar.gz: b0c806bebd2ae820c11874b4ae1e2e173dd013b25e462d85c39c8a93825dfa2a
5
5
  SHA512:
6
- metadata.gz: de45caee19e4be349b0344d6adff59124a7fdbfc3193894ab1c39ee8805ea2f634671b0701bd162b5616944459748639abd84c30bb0d707936c2f8969cffe820
7
- data.tar.gz: e7c4f27553d66ba3b37d062a83a1a9acb2f52df02d6d3567a5616432af39781b808f5613a8428a3a7a1270b1f6eadf08a090f6d669aa37db9dd99a9979351943
6
+ metadata.gz: 54ed3de6d9aa181c92aef0645dcc3b76949ca0d63b4d6d39abf5aa023566a8610c990ceaa34981a0967ac459c3c23fe819bdc3a33b45497a4be9bf88d8cd22f1
7
+ data.tar.gz: 66e74ff1862a77c581c9196d42ebf4d9b082cf44b70424676995d309f990f5f02eb85b70dcef004036267b7dc04f7f2bb09da474f67d83c5b1f2cd42997af919
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Avm
4
4
  module Tools
5
- VERSION = '0.131.0'
5
+ VERSION = '0.132.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: avm-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.131.0
4
+ version: 0.132.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-05 00:00:00.000000000 Z
11
+ date: 2022-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aranha-parsers
@@ -354,8 +354,6 @@ files:
354
354
  - lib/avm/tools/runner/launcher/instances.rb
355
355
  - lib/avm/tools/runner/launcher/projects.rb
356
356
  - lib/avm/tools/runner/launcher/publish.rb
357
- - lib/avm/tools/runner/ruby.rb
358
- - lib/avm/tools/runner/ruby/rubocop.rb
359
357
  - lib/avm/tools/runner/self.rb
360
358
  - lib/avm/tools/runner/self/docker.rb
361
359
  - lib/avm/tools/runner/self/registry.rb
@@ -364,7 +362,6 @@ files:
364
362
  - lib/avm/tools/version.rb
365
363
  - locale/en.yml
366
364
  - locale/pt-BR.yml
367
- - template/avm/eac_writings_base0/deploy/index.html.template
368
365
  - template/avm/self/docker_image/Dockerfile
369
366
  - template/avm/self/docker_image/entrypoint.sh
370
367
  homepage:
@@ -1,30 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'avm/tools/core_ext'
4
- require 'avm/eac_ruby_base1/rubocop'
5
-
6
- module Avm
7
- module Tools
8
- class Runner
9
- class Ruby
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
16
-
17
- def run
18
- ::Avm::EacRubyBase1::Rubocop.new(path, parsed.rubocop_args).run
19
- end
20
-
21
- private
22
-
23
- def path
24
- ::Pathname.new(parsed.c || '.').expand_path
25
- end
26
- end
27
- end
28
- end
29
- end
30
- end
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'eac_cli/core_ext'
4
-
5
- module Avm
6
- module Tools
7
- class Runner
8
- class Ruby
9
- require_sub __FILE__
10
- runner_with :help, :subcommands do
11
- desc 'Ruby utilities for AVM.'
12
- subcommands
13
- end
14
- end
15
- end
16
- end
17
- end
@@ -1,9 +0,0 @@
1
- <html>
2
- <head>
3
- <title>%%title%%</title>
4
- </head>
5
- <body>
6
- <h1>%%title%%</h1>
7
- <a href="%%pdf_path%%">PDF</a>
8
- </body>
9
- </html>