git-pkgs 0.2.0 → 0.4.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/CHANGELOG.md +26 -0
- data/CONTRIBUTING.md +27 -0
- data/LICENSE +189 -189
- data/README.md +101 -2
- data/SECURITY.md +7 -0
- data/lib/git/pkgs/analyzer.rb +1 -1
- data/lib/git/pkgs/cli.rb +12 -4
- data/lib/git/pkgs/color.rb +83 -0
- data/lib/git/pkgs/commands/blame.rb +24 -21
- data/lib/git/pkgs/commands/branch.rb +11 -35
- data/lib/git/pkgs/commands/diff.rb +27 -35
- data/lib/git/pkgs/commands/diff_driver.rb +169 -0
- data/lib/git/pkgs/commands/history.rb +14 -16
- data/lib/git/pkgs/commands/hooks.rb +2 -0
- data/lib/git/pkgs/commands/info.rb +8 -6
- data/lib/git/pkgs/commands/init.rb +13 -12
- data/lib/git/pkgs/commands/list.rb +21 -18
- data/lib/git/pkgs/commands/log.rb +157 -0
- data/lib/git/pkgs/commands/schema.rb +161 -0
- data/lib/git/pkgs/commands/search.rb +10 -11
- data/lib/git/pkgs/commands/show.rb +17 -23
- data/lib/git/pkgs/commands/{outdated.rb → stale.rb} +16 -13
- data/lib/git/pkgs/commands/stats.rb +59 -17
- data/lib/git/pkgs/commands/tree.rb +13 -10
- data/lib/git/pkgs/commands/update.rb +55 -58
- data/lib/git/pkgs/commands/upgrade.rb +54 -0
- data/lib/git/pkgs/commands/where.rb +166 -0
- data/lib/git/pkgs/commands/why.rb +5 -10
- data/lib/git/pkgs/database.rb +55 -1
- data/lib/git/pkgs/output.rb +44 -0
- data/lib/git/pkgs/pager.rb +68 -0
- data/lib/git/pkgs/repository.rb +3 -3
- data/lib/git/pkgs/version.rb +1 -1
- data/lib/git/pkgs.rb +8 -1
- metadata +13 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-pkgs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
@@ -76,9 +76,11 @@ extra_rdoc_files: []
|
|
|
76
76
|
files:
|
|
77
77
|
- CHANGELOG.md
|
|
78
78
|
- CODE_OF_CONDUCT.md
|
|
79
|
+
- CONTRIBUTING.md
|
|
79
80
|
- LICENSE
|
|
80
81
|
- README.md
|
|
81
82
|
- Rakefile
|
|
83
|
+
- SECURITY.md
|
|
82
84
|
- benchmark_bulk.rb
|
|
83
85
|
- benchmark_db.rb
|
|
84
86
|
- benchmark_detailed.rb
|
|
@@ -88,20 +90,26 @@ files:
|
|
|
88
90
|
- lib/git/pkgs.rb
|
|
89
91
|
- lib/git/pkgs/analyzer.rb
|
|
90
92
|
- lib/git/pkgs/cli.rb
|
|
93
|
+
- lib/git/pkgs/color.rb
|
|
91
94
|
- lib/git/pkgs/commands/blame.rb
|
|
92
95
|
- lib/git/pkgs/commands/branch.rb
|
|
93
96
|
- lib/git/pkgs/commands/diff.rb
|
|
97
|
+
- lib/git/pkgs/commands/diff_driver.rb
|
|
94
98
|
- lib/git/pkgs/commands/history.rb
|
|
95
99
|
- lib/git/pkgs/commands/hooks.rb
|
|
96
100
|
- lib/git/pkgs/commands/info.rb
|
|
97
101
|
- lib/git/pkgs/commands/init.rb
|
|
98
102
|
- lib/git/pkgs/commands/list.rb
|
|
99
|
-
- lib/git/pkgs/commands/
|
|
103
|
+
- lib/git/pkgs/commands/log.rb
|
|
104
|
+
- lib/git/pkgs/commands/schema.rb
|
|
100
105
|
- lib/git/pkgs/commands/search.rb
|
|
101
106
|
- lib/git/pkgs/commands/show.rb
|
|
107
|
+
- lib/git/pkgs/commands/stale.rb
|
|
102
108
|
- lib/git/pkgs/commands/stats.rb
|
|
103
109
|
- lib/git/pkgs/commands/tree.rb
|
|
104
110
|
- lib/git/pkgs/commands/update.rb
|
|
111
|
+
- lib/git/pkgs/commands/upgrade.rb
|
|
112
|
+
- lib/git/pkgs/commands/where.rb
|
|
105
113
|
- lib/git/pkgs/commands/why.rb
|
|
106
114
|
- lib/git/pkgs/database.rb
|
|
107
115
|
- lib/git/pkgs/models/branch.rb
|
|
@@ -110,6 +118,8 @@ files:
|
|
|
110
118
|
- lib/git/pkgs/models/dependency_change.rb
|
|
111
119
|
- lib/git/pkgs/models/dependency_snapshot.rb
|
|
112
120
|
- lib/git/pkgs/models/manifest.rb
|
|
121
|
+
- lib/git/pkgs/output.rb
|
|
122
|
+
- lib/git/pkgs/pager.rb
|
|
113
123
|
- lib/git/pkgs/repository.rb
|
|
114
124
|
- lib/git/pkgs/version.rb
|
|
115
125
|
homepage: https://github.com/andrew/git-pkgs
|
|
@@ -119,6 +129,7 @@ metadata:
|
|
|
119
129
|
homepage_uri: https://github.com/andrew/git-pkgs
|
|
120
130
|
source_code_uri: https://github.com/andrew/git-pkgs
|
|
121
131
|
changelog_uri: https://github.com/andrew/git-pkgs/blob/main/CHANGELOG.md
|
|
132
|
+
funding_uri: https://github.com/sponsors/andrew
|
|
122
133
|
rdoc_options: []
|
|
123
134
|
require_paths:
|
|
124
135
|
- lib
|