ruby_git 0.1.3 → 0.3.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/.commitlintrc.yml +16 -0
- data/.github/CODEOWNERS +4 -0
- data/.github/workflows/continuous_integration.yml +87 -0
- data/.github/workflows/enforce_conventional_commits.yml +21 -0
- data/.github/workflows/experimental_ruby_builds.yml +65 -0
- data/.gitignore +3 -0
- data/.husky/commit-msg +1 -0
- data/.markdownlint.yml +25 -0
- data/.rubocop.yml +13 -15
- data/.yardopts +6 -1
- data/CHANGELOG.md +76 -20
- data/CONTRIBUTING.md +7 -7
- data/{LICENSE.md → LICENSE.txt} +1 -1
- data/PLAN.md +67 -0
- data/README.md +64 -10
- data/RELEASING.md +5 -54
- data/Rakefile +31 -38
- data/RubyGit Class Diagram.svg +1 -0
- data/bin/command-line-test +189 -0
- data/bin/console +2 -0
- data/bin/setup +13 -2
- data/lib/ruby_git/command_line/options.rb +61 -0
- data/lib/ruby_git/command_line/result.rb +155 -0
- data/lib/ruby_git/command_line/runner.rb +296 -0
- data/lib/ruby_git/command_line.rb +95 -0
- data/lib/ruby_git/encoding_normalizer.rb +49 -0
- data/lib/ruby_git/errors.rb +169 -0
- data/lib/ruby_git/repository.rb +33 -0
- data/lib/ruby_git/status/branch.rb +92 -0
- data/lib/ruby_git/status/entry.rb +162 -0
- data/lib/ruby_git/status/ignored_entry.rb +44 -0
- data/lib/ruby_git/status/ordinary_entry.rb +207 -0
- data/lib/ruby_git/status/parser.rb +203 -0
- data/lib/ruby_git/status/renamed_entry.rb +257 -0
- data/lib/ruby_git/status/report.rb +143 -0
- data/lib/ruby_git/status/stash.rb +33 -0
- data/lib/ruby_git/status/submodule_status.rb +85 -0
- data/lib/ruby_git/status/unmerged_entry.rb +248 -0
- data/lib/ruby_git/status/untracked_entry.rb +52 -0
- data/lib/ruby_git/status.rb +33 -0
- data/lib/ruby_git/version.rb +1 -1
- data/lib/ruby_git/worktree.rb +277 -0
- data/lib/ruby_git.rb +154 -14
- data/package.json +11 -0
- data/ruby_git.gemspec +32 -20
- metadata +146 -45
- data/.travis.yml +0 -13
- data/MAINTAINERS.md +0 -8
- data/lib/ruby_git/file_helpers.rb +0 -42
- data/lib/ruby_git/git_binary.rb +0 -90
- /data/{ISSUE_TEMPLATE.md → .github/ISSUE_TEMPLATE.md} +0 -0
- /data/{PULL_REQUEST_TEMPLATE.md → .github/PULL_REQUEST_TEMPLATE.md} +0 -0
data/RELEASING.md
CHANGED
@@ -1,58 +1,9 @@
|
|
1
1
|
# How to release a new ruby_git gem
|
2
2
|
|
3
|
-
|
4
|
-
* [Prepare the release](#prepare-the-release)
|
5
|
-
* [Create a GitHub release](#create-a-github-release)
|
6
|
-
* [Build and release the gem](#build-and-release-the-gem)
|
3
|
+
Run `create-github-release <release-type>` in the root of a clean working tree.
|
7
4
|
|
8
|
-
|
9
|
-
|
5
|
+
Where `release-type` is `major`, `minor`, or `patch` depending on the nature of the
|
6
|
+
changes. Refer to the labels on each PR since the last release to determine which
|
7
|
+
semver release type to specify.
|
10
8
|
|
11
|
-
|
12
|
-
|
13
|
-
On a branch (or fork) of ruby_git, create a PR containing changes to (1) bump the
|
14
|
-
version number and (2) update the CHANGELOG.md, and (3) tag the release.
|
15
|
-
|
16
|
-
* Bump the version number
|
17
|
-
* Version number is in lib/ruby_git/version.rb
|
18
|
-
* Follow [Semantic Versioning](https://semver.org) guidelines
|
19
|
-
* `bundle exec bump --no-commit patch` # backwards compatible bug fixes
|
20
|
-
* `bundle exec bump --no-commit minor` # backwards compatible new functionality
|
21
|
-
* `bundle exec bump --no-commit major` # incompatible API changes
|
22
|
-
|
23
|
-
* Update CHANGELOG.md
|
24
|
-
* `bundle exec rake changelog`
|
25
|
-
|
26
|
-
* Stage the changes to be committed
|
27
|
-
* `git add lib/ruby_git/version.rb CHANGELOG.md`
|
28
|
-
|
29
|
-
* Commit, tag, and push changes to the repository
|
30
|
-
* ```git release v`ruby -I lib -r ruby_git -e 'puts RubyGit::VERSION'` ```
|
31
|
-
|
32
|
-
* Create a PR with these changes, have it reviewed and approved, and merged to main.
|
33
|
-
|
34
|
-
## Create a GitHub release
|
35
|
-
|
36
|
-
On [the ruby_git releases page](https://github.com/jcouball/ruby_git/releases),
|
37
|
-
select `Draft a new release`
|
38
|
-
|
39
|
-
* Select the tag corresponding to the version being released `v1.1.0.pre1`
|
40
|
-
* The Target should be `main`
|
41
|
-
* For the release description, copy the relevant section from the CHANGELOG.md
|
42
|
-
* The release description can be edited later.
|
43
|
-
* Select the appropriate value for `This is a pre-release`
|
44
|
-
* Since `v1.1.0.pre1` is a pre-release, check `This is a pre-release`
|
45
|
-
|
46
|
-
## Build and release the gem
|
47
|
-
|
48
|
-
Clone [jcouball/ruby_git](https://github.com/jcouball/ruby_git) directly (not a
|
49
|
-
fork) and ensure your local working copy is on the main branch
|
50
|
-
|
51
|
-
* Verify that you are not on a fork with the command `git remote -v`
|
52
|
-
* Verify that the version number is correct by running `rake -T` and inspecting
|
53
|
-
the output for the `release[remote]` task
|
54
|
-
|
55
|
-
Build the git gem and push it to rubygems.org with the command `rake release`
|
56
|
-
|
57
|
-
* Ensure that your `gem sources list` includes `https://rubygems.org` (in my
|
58
|
-
case, I usually have my work’s internal gem repository listed)
|
9
|
+
Follow the directions that `create-github-release` after it prepares the release PR.
|
data/Rakefile
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
desc 'Run the same tasks that the CI build will run'
|
4
|
+
if RUBY_PLATFORM == 'java'
|
5
|
+
task default: %w[spec rubocop bundle:audit build]
|
6
|
+
else
|
7
|
+
task default: %w[spec rubocop yard bundle:audit build]
|
8
|
+
end
|
4
9
|
|
5
10
|
# Bundler Audit
|
6
11
|
|
@@ -12,10 +17,6 @@ Bundler::Audit::Task.new
|
|
12
17
|
require 'bundler'
|
13
18
|
require 'bundler/gem_tasks'
|
14
19
|
|
15
|
-
# Bump
|
16
|
-
|
17
|
-
require 'bump/tasks'
|
18
|
-
|
19
20
|
# RSpec
|
20
21
|
|
21
22
|
require 'rspec/core/rake_task'
|
@@ -30,49 +31,41 @@ CLEAN << 'rspec-report.xml'
|
|
30
31
|
|
31
32
|
require 'rubocop/rake_task'
|
32
33
|
|
33
|
-
RuboCop::RakeTask.new
|
34
|
-
t.options = %w[
|
35
|
-
--format progress
|
36
|
-
--format json --out rubocop-report.json
|
37
|
-
]
|
38
|
-
end
|
39
|
-
|
40
|
-
CLEAN << 'rubocop-report.json'
|
34
|
+
RuboCop::RakeTask.new
|
41
35
|
|
42
36
|
# YARD
|
43
37
|
|
44
|
-
|
45
|
-
|
46
|
-
t.files = %w[lib/**/*.rb examples/**/*]
|
47
|
-
end
|
38
|
+
unless RUBY_PLATFORM == 'java'
|
39
|
+
# yard:build
|
48
40
|
|
49
|
-
|
50
|
-
CLEAN << 'doc'
|
41
|
+
require 'yard'
|
51
42
|
|
52
|
-
|
43
|
+
YARD::Rake::YardocTask.new('yard:build') do |t|
|
44
|
+
t.files = %w[lib/**/*.rb examples/**/*]
|
45
|
+
t.options = %w[--no-private]
|
46
|
+
t.stats_options = %w[--list-undoc]
|
47
|
+
end
|
53
48
|
|
54
|
-
|
55
|
-
|
56
|
-
sh "yardstick 'lib/**/*.rb'"
|
57
|
-
end
|
49
|
+
CLEAN << '.yardoc'
|
50
|
+
CLEAN << 'doc'
|
58
51
|
|
59
|
-
#
|
52
|
+
# yard:audit
|
60
53
|
|
61
|
-
|
54
|
+
desc 'Run yardstick to show missing YARD doc elements'
|
55
|
+
task :'yard:audit' do
|
56
|
+
sh "yardstick 'lib/**/*.rb'"
|
57
|
+
end
|
62
58
|
|
63
|
-
|
64
|
-
|
65
|
-
|
59
|
+
# yard:coverage
|
60
|
+
|
61
|
+
require 'yardstick/rake/verify'
|
66
62
|
|
67
|
-
|
63
|
+
Yardstick::Rake::Verify.new(:'yard:coverage') do |verify|
|
64
|
+
verify.threshold = 100
|
65
|
+
end
|
68
66
|
|
69
|
-
|
67
|
+
# yard
|
70
68
|
|
71
|
-
|
72
|
-
|
73
|
-
config.user = 'jcouball'
|
74
|
-
config.project = 'ruby_git'
|
75
|
-
config.future_release = "v#{RubyGit::VERSION}"
|
76
|
-
config.release_url = 'https://github.com/jcouball/ruby_git/releases/tag/%s'
|
77
|
-
config.author = true
|
69
|
+
desc 'Run all YARD tasks'
|
70
|
+
task yard: %i[yard:build yard:audit yard:coverage]
|
78
71
|
end
|