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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 744efed3dbbb3370021be4abf7e50f5105f340f0b00c2fe525416d18665b6561
4
- data.tar.gz: 938fdd59658c6ec5a74b120da486ab65d418cb5f34e69b13279bfc3656abdf50
3
+ metadata.gz: 4f2b29b124bbe5716b420d6a24042e6082d611d5e4fbadcc4668881e6ca58919
4
+ data.tar.gz: 07ad131942b0d6192ad3adba9d25779747f6687a1d65dc6a6066f898d8ad8be7
5
5
  SHA512:
6
- metadata.gz: b35184a83646f7ccffd3e34e744da2320163d46f37b2ea3f3f1511cb73d63f13f098e8472da6b792d31101f0b340b49bbc2b4eb29bdd903cae044cf129a2e34d
7
- data.tar.gz: 1cc7aaa472d842c40c5f80b747af0d55c55737b2cf4aa32a73c42081898fbc051fc30169554380dcba649b96d33cf3f4125c55efbbffbc449a5a7117191cf8ae
6
+ metadata.gz: 1aa0222f18b6346b0634c0bf5f6415801e278905c492b7be4b1820844e19edbb036189e60e7bdbb94235153f98f2af9262b5e0c02e6141b0d4bc6135db8256e4
7
+ data.tar.gz: cf9d7a7b7b7fded9402dfffd33f263327d29dcf190248af9d4e5b9ca75bf0be6f67df148b87770323149eccc318328b7d17e4b00b619ab9f5cc676f609733aa0
data/.rubocop.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
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
- - exe/**/*
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
- * Improved help messages.
3
- * Renamed executables to `git-tree-replicate` and `git-tree-evars`.
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
- * `git_tree_evars` now checks for previous definitions and issues warnings.
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
- * Removed the here document wrapper from the output of `git_tree_evars`.
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
- * Renamed gem to `git_tree`
13
- * Renamed `replicate_git_tree` command to `git_tree_replicate`.
14
- * Added `.evars` support with new executable: `git_tree_evars`
15
- * Added support for a symlinked root directory
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
- * Fussing with directory path (works!!!)
44
+
45
+ * Fussing with directory path (works!!!)
46
+
19
47
 
20
48
  ## 0.1.2 / 2023-05-01
21
- * Fussing with gem executable (did not work)
49
+
50
+ * Fussing with gem executable (did not work)
51
+
22
52
 
23
53
  ## 0.1.1 / 2023-05-01
24
- * Added missing file (did not work)
54
+
55
+ * Added missing file (did not work)
56
+
25
57
 
26
58
  ## 0.1.0 / 2023-05-01
27
- * Published as a gem (did not work)
59
+
60
+ * Published as a gem (did not work)
61
+
28
62
 
29
63
  ## 2021-04-10
30
- * Initial version published at https://www.mslinn.com/git/1100-git-tree.html
64
+
65
+ * Initial version published at https://www.mslinn.com/git/1100-git-tree.html