automatic_release_gem 0.1.8 → 0.2.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: 9c5d502528ce10009977affde19736bba036cefd9080884b0599be3b13aa768b
4
- data.tar.gz: c5245017460d14cbf3cae45f83c4bf5559865621932c2626058db471d35cea03
3
+ metadata.gz: e7d4426bac4880bee5a3a5480995ff258d47770b69dd20397af1c3c48fd00292
4
+ data.tar.gz: 2a85ef722698592605329185e53053031f4f38abc595392e0f19a9c58ade66a7
5
5
  SHA512:
6
- metadata.gz: 86059f18e4a7f896b0be80559e3bb84ff8acca4c4c6a597d2a2a5de79c829ad6fe990552842689b6a8f139dd75b5f41f8089cc6ea278feeeba1f0cd1af089a53
7
- data.tar.gz: '0923a079647545b4703c83df04aa11a6298dff5140dd56fa0fc6a39605270d880fa20f2c7716f5ed06cc8d25b0330b63c3121bae22496ac3641c54a0b85b9b5a'
6
+ metadata.gz: ac85d645524f4cf9c3e82fd81649d8d761ee160d68638d9b04796b52d3062ede4a1b8a24a10aaaf8876ab600f94ccaed6efe24a55a1e6a937989060111643f57
7
+ data.tar.gz: bb83502de975eb070d38cfd1b95048c4cdabf8cf2ce842f37a64ca29ba68237ea218ddbe0a3f0ac062003bbeec342119d060ea9061f367fe3a3f7978e4f8515f
@@ -8,15 +8,13 @@ on:
8
8
  - v*
9
9
  jobs:
10
10
  publish:
11
- # if: github.event_name == 'push' && github.ref == 'refs/heads/master'
12
11
  runs-on: ubuntu-latest
13
12
 
14
13
  steps:
15
14
  - uses: actions/checkout@v4
16
15
 
17
16
  - name: Release Gem
18
- # if: contains(github.ref, 'refs/tags/v')
19
- uses: marcelotoledo5000/publish-rubygems-action@master
17
+ uses: m4rcelotoledo/publish-rubygems-action@master
20
18
  env:
21
19
  GITHUB_TOKEN: ${{secrets.BUNDLE_GITHUB__COM}}
22
20
  RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_BUMP_RELEASE}}
@@ -12,7 +12,7 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
  strategy:
14
14
  matrix:
15
- ruby: [ '3.3' ]
15
+ ruby: [ '3.4' ]
16
16
 
17
17
  steps:
18
18
  - uses: actions/checkout@v4
data/.rubocop.yml CHANGED
@@ -1,11 +1,11 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-performance
3
3
  - rubocop-rake
4
4
  - rubocop-rspec
5
5
 
6
6
  AllCops:
7
7
  NewCops: enable
8
- TargetRubyVersion: 3.1
8
+ TargetRubyVersion: 3.4
9
9
  Exclude:
10
10
  - 'Rakefile'
11
11
  - 'bin/**/*'
@@ -31,7 +31,7 @@ Lint/StructNewOverride:
31
31
  Enabled: true
32
32
 
33
33
  Metrics/BlockLength:
34
- IgnoredMethods: ['describe', 'context', 'feature', 'scenario', 'let']
34
+ AllowedMethods: ['describe', 'context', 'feature', 'scenario', 'let']
35
35
 
36
36
  RSpec/ExampleLength:
37
37
  Enabled: false
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.3.0
1
+ 3.4.2
data/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
- # automatic_release_gem 0.1.8 (Mai 25, 2024)
1
+ # automatic_release_gem 0.2.0 (Jun 25, 2025)
2
+
3
+ * Update Ruby version
4
+ * Bump Gems
5
+ * Update repository
6
+
7
+ *Marcelo Toledo*
8
+
9
+ ## automatic_release_gem 0.1.9 (Nov 04, 2024)
10
+
11
+ * Bump Gems
12
+
13
+ *Marcelo Toledo*
14
+
15
+ ## automatic_release_gem 0.1.8 (Mai 25, 2024)
2
16
 
3
17
  * Update CI
4
18
 
data/Gemfile.lock CHANGED
@@ -1,86 +1,82 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- automatic_release_gem (0.1.8)
4
+ automatic_release_gem (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- ast (2.4.2)
10
- byebug (11.1.3)
9
+ ast (2.4.3)
10
+ byebug (12.0.0)
11
11
  coderay (1.1.3)
12
- diff-lcs (1.5.1)
13
- docile (1.4.0)
14
- json (2.7.2)
15
- language_server-protocol (3.17.0.3)
12
+ diff-lcs (1.6.2)
13
+ docile (1.4.1)
14
+ json (2.12.2)
15
+ language_server-protocol (3.17.0.5)
16
+ lint_roller (1.1.0)
16
17
  method_source (1.1.0)
17
- parallel (1.24.0)
18
- parser (3.3.1.0)
18
+ parallel (1.27.0)
19
+ parser (3.3.8.0)
19
20
  ast (~> 2.4.1)
20
21
  racc
21
- pry (0.14.2)
22
+ prism (1.4.0)
23
+ pry (0.15.2)
22
24
  coderay (~> 1.1)
23
25
  method_source (~> 1.0)
24
- pry-byebug (3.10.1)
25
- byebug (~> 11.0)
26
- pry (>= 0.13, < 0.15)
27
- racc (1.8.0)
26
+ pry-byebug (3.11.0)
27
+ byebug (~> 12.0)
28
+ pry (>= 0.13, < 0.16)
29
+ racc (1.8.1)
28
30
  rainbow (3.1.1)
29
- rake (13.2.1)
30
- regexp_parser (2.9.2)
31
- rexml (3.2.8)
32
- strscan (>= 3.0.9)
33
- rspec (3.13.0)
31
+ rake (13.3.0)
32
+ regexp_parser (2.10.0)
33
+ rspec (3.13.1)
34
34
  rspec-core (~> 3.13.0)
35
35
  rspec-expectations (~> 3.13.0)
36
36
  rspec-mocks (~> 3.13.0)
37
- rspec-core (3.13.0)
37
+ rspec-core (3.13.5)
38
38
  rspec-support (~> 3.13.0)
39
- rspec-expectations (3.13.0)
39
+ rspec-expectations (3.13.5)
40
40
  diff-lcs (>= 1.2.0, < 2.0)
41
41
  rspec-support (~> 3.13.0)
42
- rspec-mocks (3.13.1)
42
+ rspec-mocks (3.13.5)
43
43
  diff-lcs (>= 1.2.0, < 2.0)
44
44
  rspec-support (~> 3.13.0)
45
- rspec-support (3.13.1)
46
- rubocop (1.64.0)
45
+ rspec-support (3.13.4)
46
+ rubocop (1.77.0)
47
47
  json (~> 2.3)
48
- language_server-protocol (>= 3.17.0)
48
+ language_server-protocol (~> 3.17.0.2)
49
+ lint_roller (~> 1.1.0)
49
50
  parallel (~> 1.10)
50
51
  parser (>= 3.3.0.2)
51
52
  rainbow (>= 2.2.2, < 4.0)
52
- regexp_parser (>= 1.8, < 3.0)
53
- rexml (>= 3.2.5, < 4.0)
54
- rubocop-ast (>= 1.31.1, < 2.0)
53
+ regexp_parser (>= 2.9.3, < 3.0)
54
+ rubocop-ast (>= 1.45.1, < 2.0)
55
55
  ruby-progressbar (~> 1.7)
56
- unicode-display_width (>= 2.4.0, < 3.0)
57
- rubocop-ast (1.31.3)
58
- parser (>= 3.3.1.0)
59
- rubocop-capybara (2.20.0)
60
- rubocop (~> 1.41)
61
- rubocop-factory_bot (2.25.1)
62
- rubocop (~> 1.41)
63
- rubocop-performance (1.21.0)
64
- rubocop (>= 1.48.1, < 2.0)
65
- rubocop-ast (>= 1.31.1, < 2.0)
66
- rubocop-rake (0.6.0)
67
- rubocop (~> 1.0)
68
- rubocop-rspec (2.29.2)
69
- rubocop (~> 1.40)
70
- rubocop-capybara (~> 2.17)
71
- rubocop-factory_bot (~> 2.22)
72
- rubocop-rspec_rails (~> 2.28)
73
- rubocop-rspec_rails (2.28.3)
74
- rubocop (~> 1.40)
56
+ unicode-display_width (>= 2.4.0, < 4.0)
57
+ rubocop-ast (1.45.1)
58
+ parser (>= 3.3.7.2)
59
+ prism (~> 1.4)
60
+ rubocop-performance (1.25.0)
61
+ lint_roller (~> 1.1)
62
+ rubocop (>= 1.75.0, < 2.0)
63
+ rubocop-ast (>= 1.38.0, < 2.0)
64
+ rubocop-rake (0.7.1)
65
+ lint_roller (~> 1.1)
66
+ rubocop (>= 1.72.1)
67
+ rubocop-rspec (3.6.0)
68
+ lint_roller (~> 1.1)
69
+ rubocop (~> 1.72, >= 1.72.1)
75
70
  ruby-progressbar (1.13.0)
76
71
  simplecov (0.22.0)
77
72
  docile (~> 1.1)
78
73
  simplecov-html (~> 0.11)
79
74
  simplecov_json_formatter (~> 0.1)
80
- simplecov-html (0.12.3)
75
+ simplecov-html (0.13.1)
81
76
  simplecov_json_formatter (0.1.4)
82
- strscan (3.1.0)
83
- unicode-display_width (2.5.0)
77
+ unicode-display_width (3.1.4)
78
+ unicode-emoji (~> 4.0, >= 4.0.4)
79
+ unicode-emoji (4.0.4)
84
80
 
85
81
  PLATFORMS
86
82
  ruby
@@ -98,4 +94,4 @@ DEPENDENCIES
98
94
  simplecov
99
95
 
100
96
  BUNDLED WITH
101
- 2.5.10
97
+ 2.6.9
data/README.md CHANGED
@@ -40,7 +40,7 @@ To manual release update the version and then run `bundle exec rake release`, wh
40
40
 
41
41
  ## Contributing
42
42
 
43
- Bug reports and pull requests are welcome on GitHub at https://github.com/marcelotoledo5000/automatic_release_gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/marcelotoledo5000/automatic_release_gem/blob/master/CODE_OF_CONDUCT.md).
43
+ Bug reports and pull requests are welcome on GitHub at https://github.com/m4rcelotoledo/automatic_release_gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/m4rcelotoledo/automatic_release_gem/blob/master/CODE_OF_CONDUCT.md).
44
44
 
45
45
  ## License
46
46
 
@@ -48,4 +48,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
48
48
 
49
49
  ## Code of Conduct
50
50
 
51
- Everyone interacting in the AutomaticReleaseGem project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/marcelotoledo5000/automatic_release_gem/blob/master/CODE_OF_CONDUCT.md).
51
+ Everyone interacting in the AutomaticReleaseGem project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/m4rcelotoledo/automatic_release_gem/blob/master/CODE_OF_CONDUCT.md).
@@ -10,15 +10,15 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'To test automatic publication of a gem by GitHub-Actions.'
12
12
  spec.description = 'To test automatic publication of a gem by GitHub-Actions.'
13
- spec.homepage = 'https://github.com/marcelotoledo5000/automatic_release_gem'
13
+ spec.homepage = 'https://github.com/m4rcelotoledo/automatic_release_gem'
14
14
  spec.license = 'MIT'
15
- spec.required_ruby_version = Gem::Requirement.new('>= 3.3.0')
15
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.4.2')
16
16
 
17
17
  # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
18
18
 
19
19
  spec.metadata['homepage_uri'] = spec.homepage
20
- spec.metadata['source_code_uri'] = 'https://github.com/marcelotoledo5000/automatic_release_gem'
21
- spec.metadata['changelog_uri'] = 'https://github.com/marcelotoledo5000/automatic_release_gem/blob/master/CHANGELOG.md'
20
+ spec.metadata['source_code_uri'] = 'https://github.com/m4rcelotoledo/automatic_release_gem'
21
+ spec.metadata['changelog_uri'] = 'https://github.com/m4rcelotoledo/automatic_release_gem/blob/master/CHANGELOG.md'
22
22
  spec.metadata['rubygems_mfa_required'] = 'true'
23
23
 
24
24
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AutomaticReleaseGem
4
- VERSION = '0.1.8'
4
+ VERSION = '0.2.0'
5
5
  end
@@ -4,7 +4,7 @@ require_relative 'automatic_release_gem/version'
4
4
 
5
5
  module AutomaticReleaseGem
6
6
  class << self
7
- def my_usefull_method
7
+ def useful_method?
8
8
  true
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: automatic_release_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcelo Toledo
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-05-26 00:00:00.000000000 Z
10
+ date: 2025-06-25 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: To test automatic publication of a gem by GitHub-Actions.
14
13
  email:
@@ -40,15 +39,14 @@ files:
40
39
  - bin/setup
41
40
  - lib/automatic_release_gem.rb
42
41
  - lib/automatic_release_gem/version.rb
43
- homepage: https://github.com/marcelotoledo5000/automatic_release_gem
42
+ homepage: https://github.com/m4rcelotoledo/automatic_release_gem
44
43
  licenses:
45
44
  - MIT
46
45
  metadata:
47
- homepage_uri: https://github.com/marcelotoledo5000/automatic_release_gem
48
- source_code_uri: https://github.com/marcelotoledo5000/automatic_release_gem
49
- changelog_uri: https://github.com/marcelotoledo5000/automatic_release_gem/blob/master/CHANGELOG.md
46
+ homepage_uri: https://github.com/m4rcelotoledo/automatic_release_gem
47
+ source_code_uri: https://github.com/m4rcelotoledo/automatic_release_gem
48
+ changelog_uri: https://github.com/m4rcelotoledo/automatic_release_gem/blob/master/CHANGELOG.md
50
49
  rubygems_mfa_required: 'true'
51
- post_install_message:
52
50
  rdoc_options: []
53
51
  require_paths:
54
52
  - lib
@@ -56,15 +54,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
56
54
  requirements:
57
55
  - - ">="
58
56
  - !ruby/object:Gem::Version
59
- version: 3.3.0
57
+ version: 3.4.2
60
58
  required_rubygems_version: !ruby/object:Gem::Requirement
61
59
  requirements:
62
60
  - - ">="
63
61
  - !ruby/object:Gem::Version
64
62
  version: '0'
65
63
  requirements: []
66
- rubygems_version: 3.5.9
67
- signing_key:
64
+ rubygems_version: 3.6.2
68
65
  specification_version: 4
69
66
  summary: To test automatic publication of a gem by GitHub-Actions.
70
67
  test_files: []