aufgaben 0.8.2 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ffd158f88ddb4ddeb8f37c3ec2035aecdc060b49b3ff071503bdbc88e9758c1
4
- data.tar.gz: '019fee060bb762bb4bc11398da74475070128ffd287fca8a980c69713f9c0c57'
3
+ metadata.gz: 7cc3345145e8f5f41ad7ca51ae660cf212e3ed6cf07ccc8e49f32c420a3813d7
4
+ data.tar.gz: 8801f172a2dc2f445f5a18df2b8fe84cee2b41487a9ccc2d0084fa4653480266
5
5
  SHA512:
6
- metadata.gz: 4d2903b58e2d9be8e530710bb8eee38afe9f449dda92af75268626b4537fd7303028b7f3db8bae2d2da8e252cd40ce52ccd6d303f996a83275bcdaad2a3ec41e
7
- data.tar.gz: 8e7c9784d66ba273f887b84c7ca6f3b09cad80b106e9db9380e802e3ed694d5622d95ed01f74587290eae50e356536575e6df1296f45dc42d5b23984cea470fc
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.2...HEAD)
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
+ [![Gem Version](https://badge.fury.io/rb/aufgaben.svg)](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", git: "https://github.com/ybiquitous/aufgaben.git", tag: "<<tag_you_want>>", require: false
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
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
130
+ Run manually on the [Release workflow](https://github.com/ybiquitous/aufgaben/actions/workflows/release.yml).
118
131
 
119
132
  ## Contributing
120
133
 
@@ -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
- msg "The tag '#{new_version}' is added. Run 'git push --follow-tags'."
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
@@ -1,3 +1,3 @@
1
1
  module Aufgaben
2
- VERSION = "0.8.2".freeze
2
+ VERSION = "0.8.3".freeze
3
3
  end
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.2
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-09 00:00:00.000000000 Z
11
+ date: 2021-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler