git_tree 0.2.3 → 1.0.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/.rubocop.yml +25 -6
- data/CHANGELOG.md +48 -13
- data/README.md +356 -68
- data/exe/git-commitAll +3 -0
- data/exe/git-evars +3 -0
- data/exe/git-exec +3 -0
- data/exe/git-replicate +3 -0
- data/exe/git-update +3 -0
- data/git_tree.gemspec +23 -13
- data/lib/commands/abstract_command.rb +88 -0
- data/lib/commands/git_commit_all.rb +155 -0
- data/lib/commands/git_evars.rb +159 -0
- data/lib/commands/git_exec.rb +104 -0
- data/lib/commands/git_exec_spec.rb +0 -0
- data/lib/commands/git_replicate.rb +91 -0
- data/lib/commands/git_update.rb +113 -0
- data/lib/git_tree/version.rb +1 -1
- data/lib/git_tree.rb +10 -26
- data/lib/util/command_runner.rb +12 -0
- data/lib/{util.rb → util/gem_support.rb} +16 -6
- data/lib/util/git_tree_walker.rb +75 -0
- data/lib/util/git_tree_walker_private.rb +60 -0
- data/lib/util/log.rb +49 -0
- data/lib/util/thread_pool_manager.rb +116 -0
- data/lib/util/zowee_optimizer.rb +136 -0
- metadata +55 -19
- data/bindir/git-tree-evars +0 -5
- data/bindir/git-tree-replicate +0 -5
- data/lib/git_tree_evars.rb +0 -82
- data/lib/git_tree_replicate.rb +0 -86
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f2b29b124bbe5716b420d6a24042e6082d611d5e4fbadcc4668881e6ca58919
|
4
|
+
data.tar.gz: 07ad131942b0d6192ad3adba9d25779747f6687a1d65dc6a6066f898d8ad8be7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1aa0222f18b6346b0634c0bf5f6415801e278905c492b7be4b1820844e19edbb036189e60e7bdbb94235153f98f2af9262b5e0c02e6141b0d4bc6135db8256e4
|
7
|
+
data.tar.gz: cf9d7a7b7b7fded9402dfffd33f263327d29dcf190248af9d4e5b9ca75bf0be6f67df148b87770323149eccc318328b7d17e4b00b619ab9f5cc676f609733aa0
|
data/.rubocop.yml
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
plugins:
|
2
2
|
- rubocop-md
|
3
3
|
- rubocop-performance
|
4
4
|
- rubocop-rake
|
@@ -7,12 +7,11 @@ require:
|
|
7
7
|
AllCops:
|
8
8
|
Exclude:
|
9
9
|
- demo/_site/**/*
|
10
|
-
-
|
10
|
+
- binstub/**/*
|
11
11
|
- vendor/**/*
|
12
12
|
- Gemfile*
|
13
13
|
- git_tree.gemspec
|
14
14
|
NewCops: enable
|
15
|
-
TargetRubyVersion: 2.6
|
16
15
|
|
17
16
|
Gemspec/DeprecatedAttributeAssignment:
|
18
17
|
Enabled: false
|
@@ -20,6 +19,9 @@ Gemspec/DeprecatedAttributeAssignment:
|
|
20
19
|
Gemspec/RequireMFA:
|
21
20
|
Enabled: false
|
22
21
|
|
22
|
+
Gemspec/RequiredRubyVersion:
|
23
|
+
Enabled: false
|
24
|
+
|
23
25
|
Layout/HashAlignment:
|
24
26
|
EnforcedColonStyle: table
|
25
27
|
EnforcedHashRocketStyle: table
|
@@ -27,6 +29,9 @@ Layout/HashAlignment:
|
|
27
29
|
Layout/InitialIndentation:
|
28
30
|
Exclude:
|
29
31
|
- README.md
|
32
|
+
- CHANGELOG.md
|
33
|
+
- Gemfile*
|
34
|
+
- git_tree.gemspec
|
30
35
|
|
31
36
|
Layout/LineLength:
|
32
37
|
Max: 150
|
@@ -38,6 +43,9 @@ Lint/RedundantCopDisableDirective:
|
|
38
43
|
Exclude:
|
39
44
|
- git_tree.gemspec
|
40
45
|
|
46
|
+
Lint/RedundantDirGlobSort:
|
47
|
+
Enabled: false
|
48
|
+
|
41
49
|
Metrics/AbcSize:
|
42
50
|
Max: 45
|
43
51
|
|
@@ -45,6 +53,7 @@ Metrics/BlockLength:
|
|
45
53
|
Exclude:
|
46
54
|
- git_tree.gemspec
|
47
55
|
- spec/**/*
|
56
|
+
Max: 35
|
48
57
|
|
49
58
|
Metrics/ClassLength:
|
50
59
|
Exclude:
|
@@ -62,16 +71,26 @@ Metrics/PerceivedComplexity:
|
|
62
71
|
Naming/FileName:
|
63
72
|
Exclude:
|
64
73
|
- Rakefile
|
74
|
+
- CHANGELOG.md
|
75
|
+
- README.md
|
76
|
+
- Gemfile*
|
77
|
+
- exe/*
|
65
78
|
|
66
79
|
RSpec/ExampleLength:
|
67
80
|
Max: 20
|
68
81
|
|
69
|
-
RSpec/FilePath:
|
70
|
-
Enabled: false
|
71
|
-
|
72
82
|
RSpec/MultipleExpectations:
|
73
83
|
Max: 15
|
74
84
|
|
85
|
+
RSpec/MultipleMemoizedHelpers:
|
86
|
+
Enabled: false
|
87
|
+
|
88
|
+
RSpec/SpecFilePathFormat:
|
89
|
+
IgnoreMethods: true
|
90
|
+
|
91
|
+
RSpec/SubjectStub:
|
92
|
+
Enabled: false
|
93
|
+
|
75
94
|
Style/CommandLiteral:
|
76
95
|
Enabled: false
|
77
96
|
|
data/CHANGELOG.md
CHANGED
@@ -1,30 +1,65 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
|
4
|
+
## 1.0.0 / 2025-10-03
|
5
|
+
|
6
|
+
* Made the file search breadth-first instead of depth-first,
|
7
|
+
greatly increasing performance.
|
8
|
+
* Added `git-update` and `git-commitAll` commands.
|
9
|
+
* Renamed `git-tree-replicate`, `git-tree-evars` and `git-tree-exec` to
|
10
|
+
`git-replicate`, `git-evars` and `git-exec`.
|
11
|
+
* Added spec.platform to `.gemspec` because `RubyGems.org` now requires it.
|
12
|
+
|
13
|
+
|
14
|
+
## 0.3.0 / 2023-06-01
|
15
|
+
|
16
|
+
* Added `git-tree-exec` command.
|
17
|
+
|
18
|
+
|
1
19
|
## 0.2.3 / 2023-05-26
|
2
|
-
|
3
|
-
|
20
|
+
|
21
|
+
* Improved help messages.
|
22
|
+
* Renamed executables to `git-tree-replicate` and `git-tree-evars`.
|
23
|
+
|
4
24
|
|
5
25
|
## 0.2.2 / 2023-05-23
|
6
|
-
|
26
|
+
|
27
|
+
* `git_tree_evars` now checks for previous definitions and issues warnings.
|
28
|
+
|
7
29
|
|
8
30
|
## 0.2.1 / 2023-05-03
|
9
|
-
|
31
|
+
|
32
|
+
* Removed the here document wrapper from the output of `git_tree_evars`.
|
33
|
+
|
10
34
|
|
11
35
|
## 0.2.0 / 2023-05-03
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
36
|
+
|
37
|
+
* Renamed gem to `git_tree`
|
38
|
+
* Renamed `replicate_git_tree` command to `git_tree_replicate`.
|
39
|
+
* Added `.evars` support with new executable: `git_tree_evars`
|
40
|
+
* Added support for a symlinked root directory
|
41
|
+
|
16
42
|
|
17
43
|
## 0.1.3 / 2023-05-01
|
18
|
-
|
44
|
+
|
45
|
+
* Fussing with directory path (works!!!)
|
46
|
+
|
19
47
|
|
20
48
|
## 0.1.2 / 2023-05-01
|
21
|
-
|
49
|
+
|
50
|
+
* Fussing with gem executable (did not work)
|
51
|
+
|
22
52
|
|
23
53
|
## 0.1.1 / 2023-05-01
|
24
|
-
|
54
|
+
|
55
|
+
* Added missing file (did not work)
|
56
|
+
|
25
57
|
|
26
58
|
## 0.1.0 / 2023-05-01
|
27
|
-
|
59
|
+
|
60
|
+
* Published as a gem (did not work)
|
61
|
+
|
28
62
|
|
29
63
|
## 2021-04-10
|
30
|
-
|
64
|
+
|
65
|
+
* Initial version published at https://www.mslinn.com/git/1100-git-tree.html
|