gem_toys 0.14.0 → 0.15.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: b4e153165bda5192010091a5ae7e724184765fab3e1c8b1d15dc193eaa58ce1b
4
- data.tar.gz: 0cd941f654da5ab886ac5e8768bc6f51ca2045ec17b33e0535160462523e691a
3
+ metadata.gz: de5210695206b225823846142f3a64d4a83f1d539f6b2ef4977baa8a4774d42c
4
+ data.tar.gz: 35a7223790fd4d93bd056db0c9a291debfb3bf87bc8ca8e75d4db6789d6fac86
5
5
  SHA512:
6
- metadata.gz: 412cca5d3f156f03c1e4c9f134cff27fe9384cb9dd23d180ecdfed841982bef075ef8d04db1b4aec03b9da1003c67210507a6b6eed12bf28a5258c0179f74973
7
- data.tar.gz: 7f7d0248b34624832ded75ed9b95aee552e84694f3411de5d322f3f61c070cc4ec2d3a88324c98fa3f3fc0362f7d069794f6d67b96f5d953d02ac4e1e02b0443
6
+ metadata.gz: 055770116d5373233754240f93db5e25f71280534e79f5de8c410edca8373ab5d56c701b07bf1ee7f19630d9892da5417c678e8f6fc24ea44beaf283c2f12660
7
+ data.tar.gz: ca34a1260593064cf0f482a81617a72eceac261eaeffca9da58b1c17574ecc33ef7fcac7d1ffcc72fcb01e6efc6ecfda79a7732079930f95a1158185b24b7bfc
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.15.0 (2025-11-02)
6
+
7
+ * Add Ruby 3.4 for CI.
8
+ * Update Toys dependencies.
9
+ * Resolve new RuboCop offenses.
10
+ * Switch from Depfu to Renovate.
11
+ * Update development dependencies.
12
+
5
13
  ## 0.14.0 (2024-01-12)
6
14
 
7
15
  * Fix `release` change for `CHANGELOG` when there are no releases and changes yet.
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Cirrus CI - Base Branch Build Status](https://img.shields.io/cirrus/github/AlexWayfer/gem_toys?style=flat-square)](https://cirrus-ci.com/github/AlexWayfer/gem_toys)
4
4
  [![Codecov branch](https://img.shields.io/codecov/c/github/AlexWayfer/gem_toys/main.svg?style=flat-square)](https://codecov.io/gh/AlexWayfer/gem_toys)
5
5
  [![Code Climate](https://img.shields.io/codeclimate/maintainability/AlexWayfer/gem_toys.svg?style=flat-square)](https://codeclimate.com/github/AlexWayfer/gem_toys)
6
- [![Depfu](https://img.shields.io/depfu/AlexWayfer/benchmark_toys?style=flat-square)](https://depfu.com/repos/github/AlexWayfer/gem_toys)
7
6
  [![Inline docs](https://inch-ci.org/github/AlexWayfer/gem_toys.svg?branch=main)](https://inch-ci.org/github/AlexWayfer/gem_toys)
8
7
  [![license](https://img.shields.io/github/license/AlexWayfer/gem_toys.svg?style=flat-square)](https://github.com/AlexWayfer/gem_toys/blob/main/LICENSE.txt)
9
8
  [![Gem](https://img.shields.io/gem/v/gem_toys.svg?style=flat-square)](https://rubygems.org/gems/gem_toys)
@@ -30,6 +30,25 @@ module GemToys
30
30
  include Release::Changelog
31
31
  include Release::Git
32
32
 
33
+ self::VERSION_TYPES = %w[
34
+ major
35
+ minor
36
+ patch
37
+ ].freeze
38
+
39
+ self::MANUAL_CHECK_MENU = {
40
+ yes: (proc do
41
+ ## `current_version` is using in `git` and `gem` commands
42
+ clear_memery_cache! :current_version
43
+ end),
44
+ no: (proc do
45
+ handle_refusing_to_continue
46
+ end),
47
+ refresh: (proc do
48
+ wait_for_manual_check
49
+ end)
50
+ }.freeze
51
+
33
52
  required_arg :new_version
34
53
 
35
54
  to_run do
@@ -60,12 +79,6 @@ module GemToys
60
79
 
61
80
  private
62
81
 
63
- self::VERSION_TYPES = %w[
64
- major
65
- minor
66
- patch
67
- ].freeze
68
-
69
82
  def handle_new_version
70
83
  ## https://github.com/dazuma/toys/issues/103
71
84
  @new_version =
@@ -99,19 +112,6 @@ module GemToys
99
112
  )
100
113
  end
101
114
 
102
- self::MANUAL_CHECK_MENU = {
103
- yes: (proc do
104
- ## `current_version` is using in `git` and `gem` commands
105
- clear_memery_cache! :current_version
106
- end),
107
- no: (proc do
108
- handle_refusing_to_continue
109
- end),
110
- refresh: (proc do
111
- wait_for_manual_check
112
- end)
113
- }.freeze
114
-
115
115
  def wait_for_manual_check
116
116
  print_files_diff
117
117
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GemToys
4
- VERSION = '0.14.0'
4
+ VERSION = '0.15.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_toys
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Popov
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-01-12 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: alt_memery
@@ -58,14 +57,14 @@ dependencies:
58
57
  requirements:
59
58
  - - "~>"
60
59
  - !ruby/object:Gem::Version
61
- version: 0.15.1
60
+ version: 0.16.0
62
61
  type: :runtime
63
62
  prerelease: false
64
63
  version_requirements: !ruby/object:Gem::Requirement
65
64
  requirements:
66
65
  - - "~>"
67
66
  - !ruby/object:Gem::Version
68
- version: 0.15.1
67
+ version: 0.16.0
69
68
  description: 'Toys template for gems, like building, releasing, etc.
70
69
 
71
70
  '
@@ -94,7 +93,6 @@ metadata:
94
93
  homepage_uri: https://github.com/AlexWayfer/gem_toys
95
94
  changelog_uri: https://github.com/AlexWayfer/gem_toys/blob/main/CHANGELOG.md
96
95
  rubygems_mfa_required: 'true'
97
- post_install_message:
98
96
  rdoc_options: []
99
97
  require_paths:
100
98
  - lib
@@ -112,8 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
110
  - !ruby/object:Gem::Version
113
111
  version: '0'
114
112
  requirements: []
115
- rubygems_version: 3.5.3
116
- signing_key:
113
+ rubygems_version: 3.6.9
117
114
  specification_version: 4
118
115
  summary: Toys template for gems
119
116
  test_files: []