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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +2 -2
- data/README.md +20 -3
- data/lib/runger_release_assistant/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a79cd73acafc2ad5f3c13a4e235a49d2865ece9ddecc50ec433e3c299fe1f942
|
|
4
|
+
data.tar.gz: fa429ff34118542fc3e10ef8f9c0450c95ec62b85b01ee4793a454f4945d3415
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbb5e61018229013127aae8857f6657472043c37a9f53b749897e7d339ca6331fd7afec452a5d93e96db1d244a93953797e060513c7340aacc247df91a2ec6e0
|
|
7
|
+
data.tar.gz: bed4b01fcdadbe4fff793938222389541112da64dbc25c9f699039b5e1243a6a031be0c07359d9d5e0dc49b8c3bf0d7e492546b00b9a42ccbf5b05f70e8f58f4
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -10,7 +10,7 @@ GIT
|
|
|
10
10
|
PATH
|
|
11
11
|
remote: .
|
|
12
12
|
specs:
|
|
13
|
-
runger_release_assistant (4.4.
|
|
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.
|
|
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:
|
|
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
|