git 4.1.0 → 4.1.2
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/.github/copilot-instructions.md +34 -6
- data/.github/pull_request_template.md +12 -3
- data/.github/workflows/continuous_integration.yml +1 -1
- data/.github/workflows/enforce_conventional_commits.yml +1 -0
- data/.github/workflows/release.yml +1 -1
- data/.release-please-manifest.json +1 -1
- data/.yardopts +4 -0
- data/AI_POLICY.md +24 -0
- data/CHANGELOG.md +21 -0
- data/CODE_OF_CONDUCT.md +25 -0
- data/CONTRIBUTING.md +35 -2
- data/GOVERNANCE.md +106 -0
- data/MAINTAINERS.md +17 -4
- data/README.md +388 -333
- data/lib/git/log.rb +6 -1
- data/lib/git/version.rb +1 -1
- metadata +6 -3
data/lib/git/log.rb
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module Git
|
|
4
|
-
# Builds and executes a `git log` query
|
|
4
|
+
# Builds and executes a `git log` query
|
|
5
5
|
#
|
|
6
6
|
# This class provides a fluent interface for building complex `git log` queries.
|
|
7
|
+
#
|
|
8
|
+
# Queries default to returning 30 commits; call {#max_count} with `:all` to
|
|
9
|
+
# return every matching commit. Calling {#all} adds the `--all` flag to include
|
|
10
|
+
# all refs in the search but does not change the number of commits returned.
|
|
11
|
+
#
|
|
7
12
|
# The query is lazily executed when results are requested either via the modern
|
|
8
13
|
# `#execute` method or the deprecated Enumerable methods.
|
|
9
14
|
#
|
data/lib/git/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Chacon and others
|
|
@@ -250,8 +250,11 @@ files:
|
|
|
250
250
|
- ".rubocop.yml"
|
|
251
251
|
- ".rubocop_todo.yml"
|
|
252
252
|
- ".yardopts"
|
|
253
|
+
- AI_POLICY.md
|
|
253
254
|
- CHANGELOG.md
|
|
255
|
+
- CODE_OF_CONDUCT.md
|
|
254
256
|
- CONTRIBUTING.md
|
|
257
|
+
- GOVERNANCE.md
|
|
255
258
|
- Gemfile
|
|
256
259
|
- LICENSE
|
|
257
260
|
- MAINTAINERS.md
|
|
@@ -305,8 +308,8 @@ licenses:
|
|
|
305
308
|
metadata:
|
|
306
309
|
homepage_uri: http://github.com/ruby-git/ruby-git
|
|
307
310
|
source_code_uri: http://github.com/ruby-git/ruby-git
|
|
308
|
-
changelog_uri: https://rubydoc.info/gems/git/4.1.
|
|
309
|
-
documentation_uri: https://rubydoc.info/gems/git/4.1.
|
|
311
|
+
changelog_uri: https://rubydoc.info/gems/git/4.1.2/file/CHANGELOG.md
|
|
312
|
+
documentation_uri: https://rubydoc.info/gems/git/4.1.2
|
|
310
313
|
rubygems_mfa_required: 'true'
|
|
311
314
|
rdoc_options: []
|
|
312
315
|
require_paths:
|