main_branch_shared_rubocop_config 0.1.0 → 0.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/.release-please-manifest.json +3 -0
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +21 -0
- data/Rakefile +15 -1
- data/lib/main_branch_shared_rubocop_config/version.rb +1 -1
- data/release-please-config.json +22 -0
- metadata +35 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8662f9fa354eed01a10b2205441f76a4ce66df2e47a49ba5f6408e8270975b6
|
4
|
+
data.tar.gz: 660b3c4f838b62d8afc8ff54f5bf403da1c01fc54fc1cc8df1d033567f761315
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79349b2d35a3ed3719efe3d5dead5b2f8761fdc6f9d98c5c203a81c7c7825bc142faca09927876e6fca63617836da64fdb1d66d0c39c04b3f4298d1c09183744
|
7
|
+
data.tar.gz: 37f11ed9b5ad4eb93c2f28f0b2976aa549906d840b14e605dd2f8797824bb3501249b57792fdda7ad56db67046ba7a980e0562614ea801897b356c3f732ea1d8
|
data/.rubocop.yml
ADDED
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
|
5
5
|
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.1.2](https://github.com/main-branch/main_branch_shared_rubocop_config/compare/v0.1.1...v0.1.2) (2025-04-16)
|
8
|
+
|
9
|
+
|
10
|
+
### Bug Fixes
|
11
|
+
|
12
|
+
* Automate commit-to-publish workflow ([52e606b](https://github.com/main-branch/main_branch_shared_rubocop_config/commit/52e606bf22502bdddc94aa4c2d74de703b462442))
|
13
|
+
|
14
|
+
## v0.1.1 (2024-10-04)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/main-branch/main_branch_shared_rubocop_config/compare/v0.1.0..v0.1.1)
|
17
|
+
|
18
|
+
Changes since v0.1.0:
|
19
|
+
|
20
|
+
* ed1f4ff Merge pull request #3 from main-branch/add_ci_build
|
21
|
+
* 710b0c8 chore: add a continuous integration GitHub Actions workflow
|
22
|
+
* 45f847e Merge pull request #2 from main-branch/add_dependencies
|
23
|
+
* 7712cca chore: auto correct all rubocop offenses
|
24
|
+
* d23fe2f chore: configure Rubocop to run on this project
|
25
|
+
* d456481 chore: make git ignore Gemfile.lock
|
26
|
+
* 58e5c44 fix: add needed runtime dependencies
|
27
|
+
|
7
28
|
## v0.1.0 (2024-09-17)
|
8
29
|
|
9
30
|
[Full Changelog](https://github.com/main-branch/main_branch_shared_rubocop_config/compare/f01fd76..v0.1.0)
|
data/Rakefile
CHANGED
@@ -1,3 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
# make a default taks that runs rubocop and builds the gem
|
4
|
+
task default: %i[rubocop build]
|
5
|
+
|
6
|
+
require 'bundler/gem_tasks'
|
7
|
+
|
8
|
+
# Make it so that calling `rake release` just calls `rake release:rubygems_push` to
|
9
|
+
# avoid creating and pushing a new tag.
|
10
|
+
|
11
|
+
Rake::Task['release'].clear
|
12
|
+
desc 'Customized release task to avoid creating a new tag'
|
13
|
+
task release: 'release:rubygem_push'
|
14
|
+
|
15
|
+
require 'rubocop/rake_task'
|
16
|
+
|
17
|
+
RuboCop::RakeTask.new
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"bootstrap-sha": "cfc5ce2e8ff3df4a3e88b0c39760f94cd5aa905c",
|
3
|
+
"packages": {
|
4
|
+
".": {
|
5
|
+
"release-type": "ruby",
|
6
|
+
"package-name": "main_branch_shared_rubocop_config",
|
7
|
+
"changelog-path": "CHANGELOG.md",
|
8
|
+
"version-file": "lib/main_branch_shared_rubocop_config/version.rb",
|
9
|
+
"bump-minor-pre-major": true,
|
10
|
+
"bump-patch-for-minor-pre-major": true,
|
11
|
+
"draft": false,
|
12
|
+
"prerelease": false,
|
13
|
+
"include-component-in-tag": false
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"plugins": [
|
17
|
+
{
|
18
|
+
"type": "sentence-case"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
22
|
+
}
|
metadata
CHANGED
@@ -1,15 +1,42 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: main_branch_shared_rubocop_config
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: fuubar
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '2.5'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '2.5'
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: rubocop
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - "~>"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '1.66'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.66'
|
13
40
|
- !ruby/object:Gem::Dependency
|
14
41
|
name: create_github_release
|
15
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -32,6 +59,8 @@ extensions: []
|
|
32
59
|
extra_rdoc_files: []
|
33
60
|
files:
|
34
61
|
- ".markdownlint.yml"
|
62
|
+
- ".release-please-manifest.json"
|
63
|
+
- ".rubocop.yml"
|
35
64
|
- CHANGELOG.md
|
36
65
|
- CODE_OF_CONDUCT.md
|
37
66
|
- LICENSE.txt
|
@@ -40,6 +69,7 @@ files:
|
|
40
69
|
- config/rubocop.yml
|
41
70
|
- lib/main_branch_shared_rubocop_config.rb
|
42
71
|
- lib/main_branch_shared_rubocop_config/version.rb
|
72
|
+
- release-please-config.json
|
43
73
|
homepage: https://github.com/main-branch/main_branch_shared_rubocop_config
|
44
74
|
licenses:
|
45
75
|
- MIT
|
@@ -47,7 +77,7 @@ metadata:
|
|
47
77
|
allowed_push_host: https://rubygems.org
|
48
78
|
homepage_uri: https://github.com/main-branch/main_branch_shared_rubocop_config
|
49
79
|
source_code_uri: https://github.com/main-branch/main_branch_shared_rubocop_config
|
50
|
-
|
80
|
+
rubygems_mfa_required: 'true'
|
51
81
|
rdoc_options: []
|
52
82
|
require_paths:
|
53
83
|
- lib
|
@@ -62,8 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
92
|
- !ruby/object:Gem::Version
|
63
93
|
version: '0'
|
64
94
|
requirements: []
|
65
|
-
rubygems_version: 3.
|
66
|
-
signing_key:
|
95
|
+
rubygems_version: 3.6.7
|
67
96
|
specification_version: 4
|
68
97
|
summary: Shared Rubocop configuration for the main-branch organization
|
69
98
|
test_files: []
|