avm 0.2.0 → 0.4.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/base.rb +45 -0
- data/lib/avm/app_src/configuration/_locale.rb +16 -0
- data/lib/avm/app_src/configuration/_rubocop.rb +24 -0
- data/lib/avm/app_src/configuration/_tests.rb +27 -0
- data/lib/avm/app_src/configuration.rb +55 -0
- data/lib/avm/app_src.rb +9 -0
- data/lib/avm/executables.rb +24 -0
- data/lib/avm/files/appendable/file_content.rb +24 -0
- data/lib/avm/files/appendable/plain_directory.rb +25 -0
- data/lib/avm/files/appendable/resource_base.rb +13 -0
- data/lib/avm/files/appendable/tar_output_command.rb +26 -0
- data/lib/avm/files/appendable/templatized_directory.rb +29 -0
- data/lib/avm/files/appendable.rb +55 -0
- data/lib/avm/files/appender.rb +11 -0
- data/lib/avm/files/deploy.rb +71 -0
- data/lib/avm/files/formatter/formats/base.rb +62 -0
- data/lib/avm/files/formatter/formats/generic_plain.rb +34 -0
- data/lib/avm/files/formatter/formats/html.rb +45 -0
- data/lib/avm/files/formatter/formats/javascript.rb +24 -0
- data/lib/avm/files/formatter/formats/json.rb +27 -0
- data/lib/avm/files/formatter/formats/php.rb +22 -0
- data/lib/avm/files/formatter/formats/python.rb +22 -0
- data/lib/avm/files/formatter/formats/ruby.rb +22 -0
- data/lib/avm/files/formatter/formats/xml.rb +28 -0
- data/lib/avm/files/formatter/formats.rb +13 -0
- data/lib/avm/files/formatter/utf8_assert.rb +74 -0
- data/lib/avm/files/formatter.rb +90 -0
- data/lib/avm/files/rotate.rb +107 -0
- data/lib/avm/files.rb +9 -0
- data/lib/avm/git/auto_commit/commit_info.rb +23 -0
- data/lib/avm/git/auto_commit/rules/base.rb +39 -0
- data/lib/avm/git/auto_commit/rules/last.rb +19 -0
- data/lib/avm/git/auto_commit/rules/manual.rb +45 -0
- data/lib/avm/git/auto_commit/rules/new.rb +24 -0
- data/lib/avm/git/auto_commit/rules/nth.rb +31 -0
- data/lib/avm/git/auto_commit/rules/unique.rb +21 -0
- data/lib/avm/git/auto_commit/rules.rb +31 -0
- data/lib/avm/git/auto_commit_path/ruby.rb +20 -0
- data/lib/avm/git/auto_commit_path.rb +28 -0
- data/lib/avm/git/commit/class_methods.rb +31 -0
- data/lib/avm/git/commit/deploy.rb +38 -0
- data/lib/avm/git/commit/deploy_methods.rb +19 -0
- data/lib/avm/git/commit/diff_tree_line.rb +32 -0
- data/lib/avm/git/commit/file.rb +46 -0
- data/lib/avm/git/commit.rb +59 -0
- data/lib/avm/git/file_auto_fixup.rb +83 -0
- data/lib/avm/git/issue/complete/commits.rb +42 -0
- data/lib/avm/git/issue/complete/git_subrepos.rb +23 -0
- data/lib/avm/git/issue/complete/local_branch.rb +54 -0
- data/lib/avm/git/issue/complete/local_tag.rb +39 -0
- data/lib/avm/git/issue/complete/push.rb +54 -0
- data/lib/avm/git/issue/complete/remote.rb +33 -0
- data/lib/avm/git/issue/complete/test.rb +45 -0
- data/lib/avm/git/issue/complete/tracker.rb +28 -0
- data/lib/avm/git/issue/complete/validation.rb +31 -0
- data/lib/avm/git/issue/complete/validations.rb +53 -0
- data/lib/avm/git/issue/complete/working_tree.rb +19 -0
- data/lib/avm/git/issue/complete.rb +51 -0
- data/lib/avm/git/issue/deliver.rb +56 -0
- data/lib/avm/git/issue.rb +11 -0
- data/lib/avm/git/organize/reference_update.rb +34 -0
- data/lib/avm/git/organize/repository.rb +76 -0
- data/lib/avm/git/organize.rb +11 -0
- data/lib/avm/git/revision_test.rb +105 -0
- data/lib/avm/git/subrepo_check/parent.rb +51 -0
- data/lib/avm/git/subrepo_check/remote.rb +89 -0
- data/lib/avm/git/subrepo_check/show_result.rb +32 -0
- data/lib/avm/git/subrepo_check.rb +38 -0
- data/lib/avm/git/subrepo_checks.rb +59 -0
- data/lib/avm/git.rb +10 -0
- data/lib/avm/jobs/base.rb +62 -0
- data/lib/avm/jobs/variables_source.rb +22 -0
- data/lib/avm/jobs.rb +9 -0
- data/lib/avm/result.rb +86 -0
- data/lib/avm/version.rb +1 -1
- metadata +179 -3
@@ -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/ruby/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::Ruby::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_ruby_utils/fs/traversable'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Formatter
|
9
|
+
include ::EacRubyUtils::Fs::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,107 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'active_support/core_ext/object/blank'
|
4
|
+
require 'eac_ruby_utils/simple_cache'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Files
|
8
|
+
class Rotate
|
9
|
+
include ::EacRubyUtils::SimpleCache
|
10
|
+
|
11
|
+
attr_reader :options, :source_path
|
12
|
+
|
13
|
+
def initialize(source_path, options = {})
|
14
|
+
@source_path = source_path
|
15
|
+
@options = options
|
16
|
+
end
|
17
|
+
|
18
|
+
def run
|
19
|
+
validate_msg = validate
|
20
|
+
return validate_msg if validate_msg.present?
|
21
|
+
|
22
|
+
::FileUtils.mv(source_path, target_path)
|
23
|
+
check_space_limit
|
24
|
+
nil
|
25
|
+
end
|
26
|
+
|
27
|
+
def space_limit
|
28
|
+
r = options[:space_limit].try(:to_i)
|
29
|
+
return r if r.present? && r.positive?
|
30
|
+
|
31
|
+
r
|
32
|
+
end
|
33
|
+
|
34
|
+
def space_used
|
35
|
+
rotated_files.inject(0) { |a, e| a + ::File.size(e) }
|
36
|
+
end
|
37
|
+
|
38
|
+
def rotated_files
|
39
|
+
::Dir["#{dirname}/#{source_basename_without_extension}*#{source_extension}"]
|
40
|
+
end
|
41
|
+
|
42
|
+
def oldest_rotated_file
|
43
|
+
rotated_files.min_by { |file| [::File.mtime(file)] }
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def check_space_limit
|
49
|
+
return unless space_limit
|
50
|
+
|
51
|
+
while space_used > space_limit
|
52
|
+
file = oldest_rotated_file
|
53
|
+
unless file
|
54
|
+
raise 'oldest_rotated_file returned nil ' \
|
55
|
+
"(Limit: #{space_limit}, used: #{space_used})"
|
56
|
+
end
|
57
|
+
::File.delete(file)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def validate
|
62
|
+
return "Source file \"#{source_path}\" does not exist" unless ::File.exist?(source_path)
|
63
|
+
return "File \"#{source_path}\" is already rotated" if source_rotated?
|
64
|
+
|
65
|
+
nil
|
66
|
+
end
|
67
|
+
|
68
|
+
def source_rotated?
|
69
|
+
source_basename_without_extension.match(/[PN]\d{4}\z/)
|
70
|
+
end
|
71
|
+
|
72
|
+
def source_extension_uncached
|
73
|
+
file_extension(::File.basename(source_path))
|
74
|
+
end
|
75
|
+
|
76
|
+
def source_basename_without_extension
|
77
|
+
::File.basename(source_path, source_extension)
|
78
|
+
end
|
79
|
+
|
80
|
+
def target_path_uncached
|
81
|
+
::File.join(dirname, target_basename)
|
82
|
+
end
|
83
|
+
|
84
|
+
def dirname
|
85
|
+
::File.dirname(source_path)
|
86
|
+
end
|
87
|
+
|
88
|
+
def target_basename
|
89
|
+
source_basename_without_extension + target_suffix + source_extension
|
90
|
+
end
|
91
|
+
|
92
|
+
def target_suffix
|
93
|
+
return '_UNKNOWN_MTIME' unless ::File.exist?(source_path)
|
94
|
+
|
95
|
+
t = ::File.mtime(source_path)
|
96
|
+
t.strftime('_%Y-%m-%d_%H-%M-%S_') + t.strftime('%z').gsub(/\A\+/, 'P').gsub(/\A\-/, 'N')
|
97
|
+
end
|
98
|
+
|
99
|
+
def file_extension(basename)
|
100
|
+
extension = ::File.extname(basename)
|
101
|
+
return '' if extension.blank?
|
102
|
+
|
103
|
+
file_extension(::File.basename(basename, extension)) + extension
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
data/lib/avm/files.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module AutoCommit
|
8
|
+
class CommitInfo
|
9
|
+
enable_immutable
|
10
|
+
|
11
|
+
immutable_accessor :fixup, :message
|
12
|
+
|
13
|
+
def git_commit_args
|
14
|
+
r = fixup.if_present([]) { |v| ['--fixup', v.sha1] }
|
15
|
+
r += message.if_present([]) { |v| ['--message', v] }
|
16
|
+
return r if r.any?
|
17
|
+
|
18
|
+
raise 'Argument list is empty'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module AutoCommit
|
8
|
+
module Rules
|
9
|
+
class Base
|
10
|
+
class << self
|
11
|
+
def keys
|
12
|
+
[long_key, short_key]
|
13
|
+
end
|
14
|
+
|
15
|
+
def long_key
|
16
|
+
name.demodulize.variableize
|
17
|
+
end
|
18
|
+
|
19
|
+
def short_key
|
20
|
+
long_key[0, 1]
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def with_file(file)
|
25
|
+
self.class.const_get('WithFile').new(self, file)
|
26
|
+
end
|
27
|
+
|
28
|
+
class WithFile
|
29
|
+
common_constructor :rule, :file
|
30
|
+
|
31
|
+
def new_commit_info
|
32
|
+
::Avm::Git::AutoCommit::CommitInfo.new
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/git/auto_commit/rules/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module AutoCommit
|
8
|
+
module Rules
|
9
|
+
class Last < ::Avm::Git::AutoCommit::Rules::Base
|
10
|
+
class WithFile < ::Avm::Git::AutoCommit::Rules::Base::WithFile
|
11
|
+
def commit_info
|
12
|
+
file.commits.last.if_present { |v| new_commit_info.fixup(v) }
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/git/auto_commit/rules/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module AutoCommit
|
8
|
+
module Rules
|
9
|
+
class Manual < ::Avm::Git::AutoCommit::Rules::Base
|
10
|
+
class WithFile < ::Avm::Git::AutoCommit::Rules::Base::WithFile
|
11
|
+
enable_speaker
|
12
|
+
|
13
|
+
COMMIT_FORMAT = '%h - %s (%cr)'
|
14
|
+
SKIP_OPTION = 's'
|
15
|
+
|
16
|
+
def commit_info
|
17
|
+
return nil unless file.commits.any?
|
18
|
+
|
19
|
+
commits_banner
|
20
|
+
input('Which commit?', list: commits_by_position).if_present do |v|
|
21
|
+
new_commit_info.fixup(v)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def commits_banner
|
26
|
+
file.commits.each_with_index do |commit, _index|
|
27
|
+
infov " #{commit.position}", format_commit(commit)
|
28
|
+
end
|
29
|
+
infov " #{SKIP_OPTION}", 'skip'
|
30
|
+
end
|
31
|
+
|
32
|
+
def commits_by_position
|
33
|
+
(file.commits.map { |commit| [commit.position.to_s, commit] } + [[SKIP_OPTION, nil]])
|
34
|
+
.to_h
|
35
|
+
end
|
36
|
+
|
37
|
+
def format_commit(commit)
|
38
|
+
commit.format(COMMIT_FORMAT)
|
39
|
+
end
|
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/git/auto_commit/rules/base'
|
4
|
+
require 'avm/git/auto_commit_path'
|
5
|
+
|
6
|
+
module Avm
|
7
|
+
module Git
|
8
|
+
module AutoCommit
|
9
|
+
module Rules
|
10
|
+
class New < ::Avm::Git::AutoCommit::Rules::Base
|
11
|
+
class WithFile < ::Avm::Git::AutoCommit::Rules::Base::WithFile
|
12
|
+
def auto_commit_path
|
13
|
+
::Avm::Git::AutoCommitPath.new(file.git, file.path)
|
14
|
+
end
|
15
|
+
|
16
|
+
def commit_info
|
17
|
+
new_commit_info.message(auto_commit_path.commit_message)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/git/auto_commit/rules/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module AutoCommit
|
8
|
+
module Rules
|
9
|
+
class Nth < ::Avm::Git::AutoCommit::Rules::Base
|
10
|
+
SHORT_KEY = 't'
|
11
|
+
|
12
|
+
class << self
|
13
|
+
def short_key
|
14
|
+
SHORT_KEY
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
common_constructor :number do
|
19
|
+
self.number = number.to_i
|
20
|
+
end
|
21
|
+
|
22
|
+
class WithFile < ::Avm::Git::AutoCommit::Rules::Base::WithFile
|
23
|
+
def commit_info
|
24
|
+
file.commits(number - 1).if_present { |v| new_commit_info.fixup(v) }
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'avm/git/auto_commit/rules/base'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
module AutoCommit
|
8
|
+
module Rules
|
9
|
+
class Unique < ::Avm::Git::AutoCommit::Rules::Base
|
10
|
+
class WithFile < ::Avm::Git::AutoCommit::Rules::Base::WithFile
|
11
|
+
def commit_info
|
12
|
+
return nil unless file.commits.count == 1
|
13
|
+
|
14
|
+
new_commit_info.fixup(file.commits.first)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
::EacRubyUtils.require_sub __FILE__
|
6
|
+
|
7
|
+
module Avm
|
8
|
+
module Git
|
9
|
+
module AutoCommit
|
10
|
+
module Rules
|
11
|
+
RULES_CLASSES = %w[last manual new nth unique]
|
12
|
+
.map { |key| ::Avm::Git::AutoCommit::Rules.const_get(key.camelcase) }
|
13
|
+
|
14
|
+
class << self
|
15
|
+
def parse(string)
|
16
|
+
parts = string.split(':')
|
17
|
+
|
18
|
+
klass = rule_class_by_key(parts.shift)
|
19
|
+
klass.new(*parts)
|
20
|
+
end
|
21
|
+
|
22
|
+
def rule_class_by_key(key)
|
23
|
+
RULES_CLASSES.find { |klass| klass.keys.include?(key) } ||
|
24
|
+
raise("Rule not find with key \"#{key}\" (Available: " +
|
25
|
+
RULES_CLASSES.flat_map(&:keys).join(', ') + ')')
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
class AutoCommitPath
|
8
|
+
module Ruby
|
9
|
+
RUBY_CLASS_NAME_PATTERNS = [%r{lib/((?!.*/lib/).+)\.rb\z}, %r{app/[^/]+/(.+)\.rb\z}].freeze
|
10
|
+
|
11
|
+
def ruby_class_name
|
12
|
+
RUBY_CLASS_NAME_PATTERNS.each do |pattern|
|
13
|
+
pattern.if_match(relative_path.to_path, false) { |m| return m[1].camelize }
|
14
|
+
end
|
15
|
+
nil
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'eac_ruby_utils/core_ext'
|
4
|
+
|
5
|
+
module Avm
|
6
|
+
module Git
|
7
|
+
class AutoCommitPath
|
8
|
+
require_sub __FILE__, include_modules: true
|
9
|
+
common_constructor :git, :path do
|
10
|
+
self.path = path.to_pathname
|
11
|
+
end
|
12
|
+
|
13
|
+
def class_name
|
14
|
+
ruby_class_name || relative_path.to_path
|
15
|
+
end
|
16
|
+
|
17
|
+
def commit_message
|
18
|
+
r = class_name
|
19
|
+
r += ': remove' unless path.file?
|
20
|
+
r + '.'
|
21
|
+
end
|
22
|
+
|
23
|
+
def relative_path
|
24
|
+
path.expand_path.relative_path_from(git.root_path.expand_path)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|