makenew-rbgem 3.0.0 → 3.1.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: 44189a5b60ba1ed69ff7d1d62eac8ee153367affbc762ff352b9a3a940eeaadb
4
- data.tar.gz: 771dbbc65efe943a841084151a8364a2cf80ad455d250d60f2e69383c0c7a774
3
+ metadata.gz: bb68951dba7454952fca01966b79e6c20b0303d396c95b5485fd9e15c6519d64
4
+ data.tar.gz: 4399652d7534fa68e058c05ad164ce42fb1a471c6f52b6827d4db2cfe5c24d96
5
5
  SHA512:
6
- metadata.gz: 93f0dfcc96d16d89c0176526699cdd8d5ff657d80e9e29255933bd241bc04b579c50e4e1ea840c20af6702680247bb5a117a2821f0e03521b3d50de985e44258
7
- data.tar.gz: 3ed3613387d1cdc9198a45a29c082cc5c1c17dff93ca5ee211b2c558625ab92ac057e5947d16c1cc3b57184412441513bb7e34cab014414c72d45dfc32f37671
6
+ metadata.gz: 173188b61817b2a2f5f73417ec048ac7833959da19501db5f0194e3f2a785fa4c6afc29b3a2a2bee01b9a377e78d5738c5f5b7cf309ed0dfe59aca7288d62b95
7
+ data.tar.gz: 9d2a64495e181cfa8010e591258dc85e79c9aa92a3886d3964d095853e0e466a2c555714fdfa3a4af395c4c269d03c614a46614207872e285d875b54d97ae8e8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- makenew-rbgem (3.0.0)
4
+ makenew-rbgem (3.1.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -17,22 +17,26 @@ Bootstrap a new Ruby gem in five minutes or less.
17
17
  - [Standard] Ruby style guide, linter, and formatter.
18
18
  - Productive and fun testing with [RSpec].
19
19
  - Code coverage reporting with [SimpleCov].
20
- - Continuous testing and gem publishing with [GitHub Actions].
20
+ - Fully automated version management and package publishing with [semantic-release].
21
+ - Continuous checks and tests with [GitHub Actions].
21
22
  - [Keep a CHANGELOG].
22
23
  - Consistent coding with [EditorConfig].
23
24
  - Badges from [Shields.io].
25
+ - Start coding instantly with [GitHub Codespaces].
24
26
 
25
27
  [bundler]: https://bundler.io/
26
28
  [editorconfig]: https://editorconfig.org/
29
+ [gem release]: https://github.com/svenfuchs/gem-release
27
30
  [github actions]: https://github.com/features/actions
31
+ [github codespaces]: https://github.com/features/codespaces
28
32
  [keep a changelog]: https://keepachangelog.com/
29
33
  [rspec]: https://rspec.info/
30
- [rubygems.org]: https://rubygems.org/
31
34
  [ruby]: https://www.ruby-lang.org/
35
+ [rubygems.org]: https://rubygems.org/
36
+ [semantic-release]: https://semantic-release.gitbook.io/semantic-release/
32
37
  [shields.io]: https://shields.io/
33
38
  [simplecov]: https://github.com/simplecov-ruby/simplecov
34
39
  [standard]: https://github.com/testdouble/standard
35
- [gem release]: https://github.com/svenfuchs/gem-release
36
40
 
37
41
  ### Bootstrapping a new project
38
42
 
@@ -171,12 +175,30 @@ $ bundle install
171
175
 
172
176
  ### Publishing
173
177
 
174
- Use [gem release] to release a new version.
178
+ New versions are created with [gem release].
179
+
180
+ #### Automatic
181
+
182
+ New versions are released automatically with [semantic-release]
183
+ as long as commits follow the [Angular Commit Message Conventions].
175
184
 
176
- Publishing may be triggered using a [workflow_dispatch on GitHub Actions].
185
+ [Angular Commit Message Conventions]: https://semantic-release.gitbook.io/semantic-release/#commit-message-format
186
+ [semantic-release]: https://semantic-release.gitbook.io/
187
+
188
+ #### Manual
189
+
190
+ Publish a new version by triggering a [version workflow_dispatch on GitHub Actions].
191
+ The `version` input will be passed to the `--version` option of `gem bump`.
192
+
193
+ This may be done on the web or using the [GitHub CLI] with
194
+
195
+ ```
196
+ $ gh workflow run version.yml --raw-field version=<version>
197
+ ```
177
198
 
178
199
  [gem release]: https://github.com/svenfuchs/gem-release
179
- [workflow_dispatch on github actions]: https://github.com/makenew/rbgem/actions?query=workflow%3Aversion
200
+ [GitHub CLI]: https://cli.github.com/
201
+ [version workflow_dispatch on GitHub Actions]: https://github.com/seamapi/javascript-http/actions?query=workflow%3Aversion
180
202
 
181
203
  ## GitHub Actions
182
204
 
@@ -190,7 +212,7 @@ These must be set manually.
190
212
 
191
213
  ### Secrets for Optional GitHub Actions
192
214
 
193
- The version and format GitHub actions
215
+ The version, format, generate, and semantic-release GitHub actions
194
216
  require a user with write access to the repository.
195
217
  Set these additional secrets to enable the action:
196
218
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MakenewRbgem
4
- VERSION = "3.0.0"
4
+ VERSION = "3.1.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: makenew-rbgem
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Sosenko