eac_tools 0.29.0 → 0.30.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 +4 -4
- data/Gemfile.lock +31 -25
- data/lib/eac_tools/version.rb +1 -1
- data/sub/avm-eac_ruby_base1/avm-eac_ruby_base1.gemspec +1 -1
- data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/runners/base/lib_rename.rb +77 -0
- data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/namespace_replacer.rb +55 -0
- data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/sources/runners/update_dependencies_requirements.rb +21 -7
- data/sub/avm-eac_ruby_base1/lib/avm/eac_ruby_base1/version.rb +1 -1
- data/sub/avm-files/Gemfile +8 -0
- data/sub/avm-files/avm-files.gemspec +22 -0
- data/sub/avm-files/lib/avm/files/appendable/file_content.rb +24 -0
- data/sub/avm-files/lib/avm/files/appendable/plain_directory.rb +25 -0
- data/sub/avm-files/lib/avm/files/appendable/resource_base.rb +13 -0
- data/sub/avm-files/lib/avm/files/appendable/tar_output_command.rb +26 -0
- data/sub/avm-files/lib/avm/files/appendable/templatized_directory.rb +29 -0
- data/sub/avm-files/lib/avm/files/appendable.rb +55 -0
- data/sub/avm-files/lib/avm/files/appender.rb +11 -0
- data/sub/avm-files/lib/avm/files/deploy.rb +71 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/base.rb +62 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/generic_plain.rb +34 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/html.rb +45 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/javascript.rb +24 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/json.rb +27 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/php.rb +22 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/python.rb +22 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/ruby.rb +22 -0
- data/sub/avm-files/lib/avm/files/formatter/formats/xml.rb +28 -0
- data/sub/avm-files/lib/avm/files/formatter/formats.rb +13 -0
- data/sub/avm-files/lib/avm/files/formatter/utf8_assert.rb +74 -0
- data/sub/avm-files/lib/avm/files/formatter.rb +90 -0
- data/sub/avm-files/lib/avm/files/runner_with/file_replacer.rb +34 -0
- data/sub/avm-files/lib/avm/files/runner_with/filesystem_traverser.rb +54 -0
- data/sub/avm-files/lib/avm/files/runner_with.rb +11 -0
- data/sub/avm-files/lib/avm/files/text_replacer/gsub.rb +24 -0
- data/sub/avm-files/lib/avm/files/text_replacer.rb +32 -0
- data/sub/avm-files/lib/avm/files/version.rb +7 -0
- data/sub/avm-files/lib/avm/files.rb +9 -0
- data/sub/avm-files/spec/rubocop_spec.rb +3 -0
- data/sub/avm-files/spec/spec_helper.rb +4 -0
- data/sub/avm-tools/avm-tools.gemspec +5 -5
- data/sub/avm-tools/lib/avm/tools/version.rb +1 -1
- data/sub/eac_cli/eac_cli.gemspec +3 -3
- data/sub/eac_cli/lib/eac_cli/core_ext.rb +1 -1
- data/sub/eac_cli/lib/eac_cli/runner_with_set.rb +7 -3
- data/sub/eac_cli/lib/eac_cli/version.rb +1 -1
- data/sub/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
- data/sub/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
- metadata +42 -12
- data/sub/eac_ruby_base0/lib/eac_ruby_base0/patches/object/runner_with.rb +0 -5
- data/sub/eac_ruby_base0/lib/eac_ruby_base0/patches/object.rb +0 -5
- data/sub/eac_ruby_base0/lib/eac_ruby_base0/runner_with/filesystem_traverser.rb +0 -52
@@ -0,0 +1,62 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_fs/file_info'
|
4
|
+
require 'ostruct'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Base
|
11
|
+
def apply(files)
|
12
|
+
old_content = Hash[files.map { |f| [f, File.read(f)] }]
|
13
|
+
::Avm::Files::Formatter::Utf8Assert.assert_files(files) { internal_apply(files) }
|
14
|
+
files.map { |f| build_file_result(f, old_content[f]) }
|
15
|
+
end
|
16
|
+
|
17
|
+
def name
|
18
|
+
self.class.name.demodulize
|
19
|
+
end
|
20
|
+
|
21
|
+
def match?(file)
|
22
|
+
match_by_filename?(file) || match_by_type?(file)
|
23
|
+
end
|
24
|
+
|
25
|
+
def valid_basenames
|
26
|
+
constant_or_array('VALID_BASENAMES')
|
27
|
+
end
|
28
|
+
|
29
|
+
def valid_types
|
30
|
+
constant_or_array('VALID_TYPES')
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def constant_or_array(name)
|
36
|
+
return [] unless self.class.const_defined?(name)
|
37
|
+
|
38
|
+
self.class.const_get(name)
|
39
|
+
end
|
40
|
+
|
41
|
+
def build_file_result(file, old_content)
|
42
|
+
::OpenStruct.new(file: file, format: self.class,
|
43
|
+
changed: (old_content != File.read(file)))
|
44
|
+
end
|
45
|
+
|
46
|
+
def match_by_filename?(file)
|
47
|
+
valid_basenames.any? do |valid_basename|
|
48
|
+
file.basename.fnmatch?(valid_basename)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def match_by_type?(file)
|
53
|
+
info = ::EacFs::FileInfo.new(file)
|
54
|
+
return unless info.content_type.type == 'text'
|
55
|
+
|
56
|
+
valid_types.include?(info.content_type.subtype)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/files/formatter/formats/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Files
|
7
|
+
class Formatter
|
8
|
+
module Formats
|
9
|
+
class GenericPlain < ::Avm::Files::Formatter::Formats::Base
|
10
|
+
VALID_BASENAMES = %w[*.asm *.bat *.css.coffee *.java *.js *.rb *.s *.scss *.sql *.tex
|
11
|
+
*.url *.yml *.yaml].freeze
|
12
|
+
|
13
|
+
VALID_TYPES = %w[plain x-shellscript].freeze
|
14
|
+
|
15
|
+
def internal_apply(files)
|
16
|
+
files.each { |file| file_apply(file) }
|
17
|
+
end
|
18
|
+
|
19
|
+
def file_apply(file)
|
20
|
+
file.write(string_apply(file.read))
|
21
|
+
end
|
22
|
+
|
23
|
+
def string_apply(string)
|
24
|
+
b = ''
|
25
|
+
string.each_line do |line|
|
26
|
+
b += "#{line.rstrip}\n"
|
27
|
+
end
|
28
|
+
"#{b.strip}\n".gsub(/\t/, ' ')
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/files/formatter/formats/generic_plain'
|
4
|
+
require 'htmlbeautifier'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Html < ::Avm::Files::Formatter::Formats::GenericPlain
|
11
|
+
VALID_BASENAMES = %w[*.html *.html.erb].freeze
|
12
|
+
VALID_TYPES = ['html'].freeze
|
13
|
+
|
14
|
+
def file_apply(path)
|
15
|
+
input = ::File.read(path)
|
16
|
+
temppath = tempfile_path
|
17
|
+
::File.open(temppath, 'w') do |output|
|
18
|
+
beautify path, input, output
|
19
|
+
end
|
20
|
+
::FileUtils.mv(temppath, path)
|
21
|
+
super(path)
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def beautify(name, input, output)
|
27
|
+
output.puts ::HtmlBeautifier.beautify(input, htmlbeautify_options)
|
28
|
+
rescue StandardError => e
|
29
|
+
raise "Error parsing #{name}: #{e}"
|
30
|
+
end
|
31
|
+
|
32
|
+
def htmlbeautify_options
|
33
|
+
@htmlbeautify_options ||= { indent: ' ' }
|
34
|
+
end
|
35
|
+
|
36
|
+
def tempfile_path
|
37
|
+
tempfile = ::Tempfile.new
|
38
|
+
tempfile.close
|
39
|
+
tempfile.path
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/executables'
|
4
|
+
require 'avm/files/formatter/formats/generic_plain'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Javascript < ::Avm::Files::Formatter::Formats::GenericPlain
|
11
|
+
VALID_BASENAMES = %w[*.js].freeze
|
12
|
+
VALID_TYPES = [].freeze
|
13
|
+
|
14
|
+
def internal_apply(files)
|
15
|
+
::Avm::Executables.js_beautify.command.append(
|
16
|
+
['--indent-size=2', '--end-with-newline', '--replace', *files]
|
17
|
+
).system!
|
18
|
+
super(files)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/files/formatter/formats/generic_plain'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Files
|
7
|
+
class Formatter
|
8
|
+
module Formats
|
9
|
+
class Json < ::Avm::Files::Formatter::Formats::GenericPlain
|
10
|
+
VALID_BASENAMES = %w[*.json].freeze
|
11
|
+
VALID_TYPES = [].freeze
|
12
|
+
|
13
|
+
def file_apply(file)
|
14
|
+
::File.write(file, ::JSON.pretty_generate(::JSON.parse(::File.read(file))))
|
15
|
+
end
|
16
|
+
|
17
|
+
def json_file?(file)
|
18
|
+
::JSON.parse(::File.read(file))
|
19
|
+
true
|
20
|
+
rescue JSON::ParserError
|
21
|
+
false
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/executables'
|
4
|
+
require 'avm/files/formatter/formats/generic_plain'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Php < ::Avm::Files::Formatter::Formats::GenericPlain
|
11
|
+
VALID_BASENAMES = %w[*.php].freeze
|
12
|
+
VALID_TYPES = ['x-php'].freeze
|
13
|
+
|
14
|
+
def file_apply(file)
|
15
|
+
::Avm::Executables.php_cs_fixer.command.append(['fix', file]).system!
|
16
|
+
super(file)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/executables'
|
4
|
+
require 'avm/files/formatter/formats/generic_plain'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Python < ::Avm::Files::Formatter::Formats::GenericPlain
|
11
|
+
VALID_BASENAMES = %w[*.py].freeze
|
12
|
+
VALID_TYPES = ['x-python'].freeze
|
13
|
+
|
14
|
+
def internal_apply(files)
|
15
|
+
::Avm::Executables.yapf.command.append(['--in-place', *files]).system!
|
16
|
+
super(files)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/files/formatter/formats/generic_plain'
|
4
|
+
require 'avm/eac_ruby_base1/rubocop'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Ruby < ::Avm::Files::Formatter::Formats::GenericPlain
|
11
|
+
VALID_BASENAMES = %w[*.gemspec *.rake *.rb Gemfile Rakefile].freeze
|
12
|
+
VALID_TYPES = ['x-ruby'].freeze
|
13
|
+
|
14
|
+
def internal_apply(files)
|
15
|
+
::Avm::EacRubyBase1::Rubocop.new('.', ['-a', '--ignore-parent-exclusion'] + files).run
|
16
|
+
super(files)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/executables'
|
4
|
+
require 'avm/files/formatter/formats/generic_plain'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
module Formats
|
10
|
+
class Xml < ::Avm::Files::Formatter::Formats::GenericPlain
|
11
|
+
VALID_BASENAMES = %w[*.xml].freeze
|
12
|
+
VALID_TYPES = ['xml'].freeze
|
13
|
+
|
14
|
+
def internal_apply(files)
|
15
|
+
format_command(files).system!
|
16
|
+
super(files)
|
17
|
+
end
|
18
|
+
|
19
|
+
def format_command(files)
|
20
|
+
::Avm::Executables.tidy.command.append(
|
21
|
+
%w[-xml -modify --indent auto --indent-spaces 2 --wrap 100] + files
|
22
|
+
)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_fs/file_info'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Files
|
7
|
+
class Formatter
|
8
|
+
class Utf8Assert
|
9
|
+
UTF8_CHARSET = 'utf-8'
|
10
|
+
UTF8_CHARSETS = [UTF8_CHARSET, 'us-ascii'].freeze
|
11
|
+
|
12
|
+
class << self
|
13
|
+
def assert_files(files)
|
14
|
+
asserters = files.map { |file| new(file) }
|
15
|
+
begin
|
16
|
+
asserters.each(&:assert)
|
17
|
+
yield
|
18
|
+
ensure
|
19
|
+
asserters.each(&:revert)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
enable_simple_cache
|
25
|
+
common_constructor :path
|
26
|
+
|
27
|
+
def assert
|
28
|
+
return if original_utf8?
|
29
|
+
|
30
|
+
convert_self(original_charset, UTF8_CHARSET)
|
31
|
+
end
|
32
|
+
|
33
|
+
def revert
|
34
|
+
return if original_utf8?
|
35
|
+
|
36
|
+
convert_self(UTF8_CHARSET, original_charset)
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
|
41
|
+
def original_info_uncached
|
42
|
+
::EacFs::FileInfo.new(path)
|
43
|
+
end
|
44
|
+
|
45
|
+
def original_charset_uncached
|
46
|
+
return original_info.content_type.charset if original_info.content_type.charset.present?
|
47
|
+
|
48
|
+
raise 'No charset found'
|
49
|
+
rescue StandardError => e
|
50
|
+
raise "Unable to determine the charset of #{path} (#{e.message})"
|
51
|
+
end
|
52
|
+
|
53
|
+
def original_utf8?
|
54
|
+
UTF8_CHARSETS.include?(original_charset)
|
55
|
+
end
|
56
|
+
|
57
|
+
def convert_file(from_path, from_charset, to_path, to_charset)
|
58
|
+
File.open(from_path, "r:#{from_charset}") do |input|
|
59
|
+
File.open(to_path, "w:#{to_charset}") do |output|
|
60
|
+
output.write(input.read)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def convert_self(from_charset, to_charset)
|
66
|
+
temp = ::Tempfile.new
|
67
|
+
temp.close
|
68
|
+
convert_file(path, from_charset, temp.path, to_charset)
|
69
|
+
::FileUtils.mv(temp.path, path)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
require 'eac_fs/traversable'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
include ::EacFs::Traversable
|
10
|
+
require_sub __FILE__
|
11
|
+
enable_simple_cache
|
12
|
+
enable_speaker
|
13
|
+
enable_listable
|
14
|
+
lists.add_symbol :option, :apply, :recursive, :verbose
|
15
|
+
common_constructor :source_paths, :options, default: [{}] do
|
16
|
+
options.assert_valid_keys(self.class.lists.option.values)
|
17
|
+
end
|
18
|
+
|
19
|
+
FORMATS = %w[ruby php html python xml javascript json generic_plain].freeze
|
20
|
+
|
21
|
+
def run
|
22
|
+
clear
|
23
|
+
search_files
|
24
|
+
apply
|
25
|
+
show_results
|
26
|
+
end
|
27
|
+
|
28
|
+
private
|
29
|
+
|
30
|
+
def apply
|
31
|
+
infom "Applying #{@formats_files.count} format(s)... "
|
32
|
+
@formats_files.each do |format, files|
|
33
|
+
infom "Applying format #{format.name} (Files matched: #{files.count})..."
|
34
|
+
next unless options[OPTION_APPLY]
|
35
|
+
|
36
|
+
@result += format.apply(files)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def traverser_check_file(file)
|
41
|
+
format = find_format(file)
|
42
|
+
infov file, format ? format.class : '-' if options[OPTION_VERBOSE]
|
43
|
+
return unless format
|
44
|
+
|
45
|
+
@formats_files[format] ||= []
|
46
|
+
@formats_files[format] << file
|
47
|
+
end
|
48
|
+
|
49
|
+
def clear
|
50
|
+
@formats_files = {}
|
51
|
+
@result = []
|
52
|
+
end
|
53
|
+
|
54
|
+
def find_format(file)
|
55
|
+
formats.each do |c|
|
56
|
+
return c if c.match?(file)
|
57
|
+
end
|
58
|
+
nil
|
59
|
+
end
|
60
|
+
|
61
|
+
def formats_uncached
|
62
|
+
FORMATS.map do |identifier|
|
63
|
+
"avm/files/formatter/formats/#{identifier}".camelize.constantize.new
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def search_files
|
68
|
+
infov 'Directories to search', source_paths.count
|
69
|
+
source_paths.each do |source_path|
|
70
|
+
infom "Searching files on \"#{source_path}\"..."
|
71
|
+
traverser_check_path(source_path)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def show_results
|
76
|
+
changed = @result.select(&:changed)
|
77
|
+
changed.each do |h|
|
78
|
+
out h.file.to_s.cyan
|
79
|
+
out " (#{h.format})".yellow
|
80
|
+
puts ' changed'.green
|
81
|
+
end
|
82
|
+
infov('Files changed', "#{changed.count}/#{@result.count}")
|
83
|
+
end
|
84
|
+
|
85
|
+
def traverser_recursive
|
86
|
+
options[OPTION_RECURSIVE]
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_cli/core_ext'
|
4
|
+
require 'avm/files/text_replacer'
|
5
|
+
require 'avm/files/runner_with/filesystem_traverser'
|
6
|
+
|
7
|
+
module Avm
|
8
|
+
module Files
|
9
|
+
module RunnerWith
|
10
|
+
module FileReplacer
|
11
|
+
common_concern do
|
12
|
+
include ::Avm::Files::RunnerWith::FilesystemTraverser
|
13
|
+
include TopMethods
|
14
|
+
end
|
15
|
+
|
16
|
+
module TopMethods
|
17
|
+
def text_replacer
|
18
|
+
::Avm::Files::TextReplacer.new
|
19
|
+
end
|
20
|
+
|
21
|
+
def replace_file?(_file)
|
22
|
+
true
|
23
|
+
end
|
24
|
+
|
25
|
+
def traverser_check_file(file)
|
26
|
+
return unless replace_file?(file)
|
27
|
+
|
28
|
+
infov 'Changed', file if text_replacer.file_apply(file)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_cli/runner'
|
4
|
+
require 'eac_fs/traversable'
|
5
|
+
require 'eac_ruby_utils/core_ext'
|
6
|
+
require 'eac_ruby_utils/settings_provider'
|
7
|
+
|
8
|
+
module Avm
|
9
|
+
module Files
|
10
|
+
module RunnerWith
|
11
|
+
module FilesystemTraverser
|
12
|
+
DEFAULT_DEFAULT_TRAVERSER_RECURSIVE = false
|
13
|
+
|
14
|
+
common_concern do
|
15
|
+
include ::EacCli::Runner
|
16
|
+
include ::EacFs::Traversable
|
17
|
+
enable_settings_provider
|
18
|
+
include TopMethods
|
19
|
+
runner_definition do
|
20
|
+
bool_opt '-R', '--recursive', 'Recursive.'
|
21
|
+
bool_opt '--no-recursive', 'No recursive.'
|
22
|
+
pos_arg :paths, optional: true, repeat: true
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
module TopMethods
|
27
|
+
def on_none_path_informed
|
28
|
+
infom 'Warning: none path informed'
|
29
|
+
end
|
30
|
+
|
31
|
+
def paths
|
32
|
+
parsed.paths.map(&:to_pathname)
|
33
|
+
end
|
34
|
+
|
35
|
+
def run_filesystem_traverser
|
36
|
+
if parsed.paths.any?
|
37
|
+
parsed.paths.each { |path| traverser_check_path(path) }
|
38
|
+
else
|
39
|
+
on_none_path_informed
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def traverser_recursive
|
44
|
+
return false if parsed.no_recursive?
|
45
|
+
return true if parsed.recursive?
|
46
|
+
|
47
|
+
setting_value(:default_traverser_recursive, required: false)
|
48
|
+
.if_not_nil(DEFAULT_DEFAULT_TRAVERSER_RECURSIVE)
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Files
|
7
|
+
class TextReplacer
|
8
|
+
class Gsub
|
9
|
+
common_constructor :from, :to do
|
10
|
+
self.from = from
|
11
|
+
self.to = to
|
12
|
+
end
|
13
|
+
|
14
|
+
def apply(input)
|
15
|
+
input.gsub(from, to)
|
16
|
+
end
|
17
|
+
|
18
|
+
def to_s
|
19
|
+
"\"#{from}\" => \"#{to}\""
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Files
|
7
|
+
class TextReplacer
|
8
|
+
require_sub __FILE__
|
9
|
+
enable_immutable
|
10
|
+
|
11
|
+
immutable_accessor :replacement, type: :array
|
12
|
+
|
13
|
+
def apply(input)
|
14
|
+
replacements.inject(input) { |a, e| e.apply(a) }
|
15
|
+
end
|
16
|
+
|
17
|
+
def file_apply(file)
|
18
|
+
file = file.to_pathname
|
19
|
+
input = file.read
|
20
|
+
output = apply(file.read)
|
21
|
+
return false if output == input
|
22
|
+
|
23
|
+
file.write(output)
|
24
|
+
true
|
25
|
+
end
|
26
|
+
|
27
|
+
def gsub(from, to)
|
28
|
+
replacement(::Avm::TextReplacer::Gsub.new(from, to))
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -14,17 +14,17 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.bindir = 'exe'
|
15
15
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
16
16
|
|
17
|
-
s.add_dependency 'aranha-parsers', '~> 0.14', '>= 0.14.
|
17
|
+
s.add_dependency 'aranha-parsers', '~> 0.14', '>= 0.14.3'
|
18
18
|
s.add_dependency 'avm', '~> 0.42'
|
19
|
-
s.add_dependency 'avm-eac_ruby_base1', '~> 0.
|
19
|
+
s.add_dependency 'avm-eac_ruby_base1', '~> 0.21'
|
20
20
|
s.add_dependency 'avm-eac_ubuntu_base0', '~> 0.3'
|
21
|
-
s.add_dependency 'avm-files', '~> 0.
|
21
|
+
s.add_dependency 'avm-files', '~> 0.4'
|
22
22
|
s.add_dependency 'avm-git', '~> 0.4'
|
23
23
|
s.add_dependency 'clipboard', '~> 1.3', '>= 1.3.6'
|
24
24
|
s.add_dependency 'curb', '~> 0.9', '>= 0.9.11'
|
25
25
|
s.add_dependency 'eac_git', '~> 0.12', '>= 0.12.2'
|
26
|
-
s.add_dependency 'eac_ruby_base0', '~> 0.
|
27
|
-
s.add_dependency 'eac_templates', '~> 0.3', '>= 0.3.
|
26
|
+
s.add_dependency 'eac_ruby_base0', '~> 0.17'
|
27
|
+
s.add_dependency 'eac_templates', '~> 0.3', '>= 0.3.2'
|
28
28
|
s.add_dependency 'git', '~> 1.12'
|
29
29
|
s.add_dependency 'ruby-progressbar', '~> 1.11'
|
30
30
|
|