aufgaben 0.8.2 → 0.8.3
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 +7 -1
- data/README.md +17 -4
- data/lib/aufgaben/release.rb +4 -1
- data/lib/aufgaben/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cc3345145e8f5f41ad7ca51ae660cf212e3ed6cf07ccc8e49f32c420a3813d7
|
|
4
|
+
data.tar.gz: 8801f172a2dc2f445f5a18df2b8fe84cee2b41487a9ccc2d0084fa4653480266
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 819da1979aabef1ab36bd4c5075233d10958c87dcdf966c8795ce16e0ef1026aa4ccbc3b0c006801003b391585b24cb12202fc0af197d144f3d9a629b57b1ef6
|
|
7
|
+
data.tar.gz: 1f2cfbf0c2e39b61e8869de8906e956fff7a83759f10aaae2d3298f2ed36fa5f8f8198c57fcdbceb6f438063032e7cb0dc16b3eca58abca71f00a09ca66cbed6
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
-
[Full diff](https://github.com/ybiquitous/aufgaben/compare/0.8.
|
|
7
|
+
[Full diff](https://github.com/ybiquitous/aufgaben/compare/0.8.3...HEAD)
|
|
8
|
+
|
|
9
|
+
## 0.8.3
|
|
10
|
+
|
|
11
|
+
[Full diff](https://github.com/ybiquitous/aufgaben/compare/0.8.2...0.8.3)
|
|
12
|
+
|
|
13
|
+
- Run `git show` on `release` task [#45](https://github.com/ybiquitous/aufgaben/pull/45)
|
|
8
14
|
|
|
9
15
|
## 0.8.2
|
|
10
16
|
|
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://badge.fury.io/rb/aufgaben)
|
|
2
|
+
|
|
1
3
|
# Aufgaben
|
|
2
4
|
|
|
3
5
|
The collection of useful Rake tasks.
|
|
@@ -7,8 +9,7 @@ The collection of useful Rake tasks.
|
|
|
7
9
|
Add this line to your `Gemfile`:
|
|
8
10
|
|
|
9
11
|
```ruby
|
|
10
|
-
gem "aufgaben",
|
|
11
|
-
|
|
12
|
+
gem "aufgaben", require: false
|
|
12
13
|
```
|
|
13
14
|
|
|
14
15
|
## Usage
|
|
@@ -112,9 +113,21 @@ $ rake bump:nodejs'[12.16.1]' [DRY_RUN=1]
|
|
|
112
113
|
|
|
113
114
|
## Development
|
|
114
115
|
|
|
115
|
-
|
|
116
|
+
To set up:
|
|
117
|
+
|
|
118
|
+
```console
|
|
119
|
+
bin/setup
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
To run an interactive prompt:
|
|
123
|
+
|
|
124
|
+
```console
|
|
125
|
+
bin/console
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
To release:
|
|
116
129
|
|
|
117
|
-
|
|
130
|
+
Run manually on the [Release workflow](https://github.com/ybiquitous/aufgaben/actions/workflows/release.yml).
|
|
118
131
|
|
|
119
132
|
## Contributing
|
|
120
133
|
|
data/lib/aufgaben/release.rb
CHANGED
|
@@ -80,7 +80,10 @@ module Aufgaben
|
|
|
80
80
|
|
|
81
81
|
sh "git", "commit", "--quiet", "--message", "Version #{new_version}"
|
|
82
82
|
sh "git", "tag", "--annotate", "--message", "Version #{new_version}", new_version
|
|
83
|
-
|
|
83
|
+
sh "git", "show", "--pretty"
|
|
84
|
+
|
|
85
|
+
git_push = Color.new("git push --follow-tags").green
|
|
86
|
+
msg "The tag '#{colored_new_version}' is added. Run '#{git_push}'."
|
|
84
87
|
end
|
|
85
88
|
end
|
|
86
89
|
end
|
data/lib/aufgaben/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aufgaben
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masafumi Koba
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-07-
|
|
11
|
+
date: 2021-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|