runger_release_assistant 4.4.0 → 4.4.1

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: 7cbed4b91c1975f359c3538793e2236fde514b3d332b0366aed495a7700ddd47
4
- data.tar.gz: df4d1510a52798fa1708c6f244590b66b2ad1c388aadb32faa6ed224118fd037
3
+ metadata.gz: a79cd73acafc2ad5f3c13a4e235a49d2865ece9ddecc50ec433e3c299fe1f942
4
+ data.tar.gz: fa429ff34118542fc3e10ef8f9c0450c95ec62b85b01ee4793a454f4945d3415
5
5
  SHA512:
6
- metadata.gz: 9d37fe887087a04b8b069cdcb715d5309cd1feceeab2cd801c4f63da3e00ba6879e05b3f20af1f54b4a8e5a768333645f78b24000dbd78c5ced1020edb9489eb
7
- data.tar.gz: 1a0afe462dab5ba3b1d8910b8c4df8d02cf7a06a12c89a529ba5e07ada22ba7cbc1e7f32b034f54279e0b56c5cf03a5ae368dd0864ea1b8d94ff8afaf16936be
6
+ metadata.gz: fbb5e61018229013127aae8857f6657472043c37a9f53b749897e7d339ca6331fd7afec452a5d93e96db1d244a93953797e060513c7340aacc247df91a2ec6e0
7
+ data.tar.gz: bed4b01fcdadbe4fff793938222389541112da64dbc25c9f699039b5e1243a6a031be0c07359d9d5e0dc49b8c3bf0d7e492546b00b9a42ccbf5b05f70e8f58f4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  ## Unreleased
2
2
  [no unreleased changes yet]
3
3
 
4
+ ## v4.4.1 (2026-09-23)
5
+ - [README] Document requirements for RubyGems release.
6
+
4
7
  ## v4.4.0 (2026-09-23)
5
8
  ### Docs
6
9
  - [README] Document required changelog format.
data/Gemfile.lock CHANGED
@@ -10,7 +10,7 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- runger_release_assistant (4.4.0)
13
+ runger_release_assistant (4.4.1)
14
14
  activesupport (>= 6)
15
15
  memo_wise (>= 1.7)
16
16
  rainbow (>= 3.0)
@@ -203,7 +203,7 @@ CHECKSUMS
203
203
  rubocop-rspec (3.10.2) sha256=0b3e2ecc592cd10ecbf0095bb58d1e357905276e069643523cc19eb7495f65e2
204
204
  ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
205
205
  runger_byebug (11.4.0) sha256=569e22ba2215f57e7f69e145fcb63be401e29fcd312f7936d813e12d0c7bbee6
206
- runger_release_assistant (4.4.0)
206
+ runger_release_assistant (4.4.1)
207
207
  runger_style (5.21.0) sha256=a8183a5ea180080da1bc6d47558c6e6620f91a5d323105d34728f40733c83038
208
208
  securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
209
209
  slop (4.10.1) sha256=844322b5ffcf17ed4815fdb173b04a20dd82b4fd93e3744c88c8fafea696d9c7
data/README.md CHANGED
@@ -7,7 +7,8 @@ versions via git/GitHub and (optionally) via RubyGems.
7
7
 
8
8
  <!--ts-->
9
9
  * [runger_release_assistant](#runger_release_assistant)
10
- * [Dependencies](#dependencies)
10
+ * [Dependencies / Requirements](#dependencies--requirements)
11
+ * [Releasing via RubyGems](#releasing-via-rubygems)
11
12
  * [Installation](#installation)
12
13
  * [Global installation](#global-installation)
13
14
  * [Installation in a specific project](#installation-in-a-specific-project)
@@ -24,14 +25,30 @@ versions via git/GitHub and (optionally) via RubyGems.
24
25
  * [License](#license)
25
26
 
26
27
  <!-- Created by https://github.com/ekalinin/github-markdown-toc -->
27
- <!-- Added by: david, at: Tue Aug 25 04:03:24 CDT 2026 -->
28
+ <!-- Added by: david, at: Wed Sep 23 12:29:01 AM CDT 2026 -->
28
29
 
29
30
  <!--te-->
30
31
 
31
- ## Dependencies
32
+ ## Dependencies / Requirements
32
33
 
33
34
  This gem assumes that you have `git` installed.
34
35
 
36
+ ### Releasing via RubyGems
37
+
38
+ If you are going to release via RubyGems, then you will need to have `rake` as part of your bundle, e.g. by having the following in your `Gemfile`:
39
+
40
+ ```rb
41
+ gem 'rake', require: false
42
+ ```
43
+
44
+ Also, you will need to have a `Rakefile` that includes the following:
45
+
46
+ ```rb
47
+ require 'bundler/gem_tasks'
48
+ ```
49
+
50
+ Also, you will probably want to have `/pkg/` in your `.gitignore`, so that you don't track the built gem packages in Git.
51
+
35
52
  ## Installation
36
53
 
37
54
  ### Global installation
@@ -2,5 +2,5 @@
2
2
 
3
3
  # rubocop:disable-next Style/StaticClass
4
4
  class RungerReleaseAssistant
5
- VERSION = '4.4.0'
5
+ VERSION = '4.4.1'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runger_release_assistant
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.4.0
4
+ version: 4.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Runger