automatic_release_gem 0.1.6 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/publish_release.yml +3 -2
- data/.github/workflows/ruby.yml +2 -2
- data/.ruby-version +1 -1
- data/CHANGELOG.md +14 -1
- data/Gemfile.lock +55 -38
- data/automatic_release_gem.gemspec +1 -1
- data/lib/automatic_release_gem/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c5d502528ce10009977affde19736bba036cefd9080884b0599be3b13aa768b
|
4
|
+
data.tar.gz: c5245017460d14cbf3cae45f83c4bf5559865621932c2626058db471d35cea03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86059f18e4a7f896b0be80559e3bb84ff8acca4c4c6a597d2a2a5de79c829ad6fe990552842689b6a8f139dd75b5f41f8089cc6ea278feeeba1f0cd1af089a53
|
7
|
+
data.tar.gz: '0923a079647545b4703c83df04aa11a6298dff5140dd56fa0fc6a39605270d880fa20f2c7716f5ed06cc8d25b0330b63c3121bae22496ac3641c54a0b85b9b5a'
|
@@ -8,13 +8,14 @@ on:
|
|
8
8
|
- v*
|
9
9
|
jobs:
|
10
10
|
publish:
|
11
|
-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
11
|
+
# if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
12
12
|
runs-on: ubuntu-latest
|
13
13
|
|
14
14
|
steps:
|
15
|
-
- uses: actions/checkout@
|
15
|
+
- uses: actions/checkout@v4
|
16
16
|
|
17
17
|
- name: Release Gem
|
18
|
+
# if: contains(github.ref, 'refs/tags/v')
|
18
19
|
uses: marcelotoledo5000/publish-rubygems-action@master
|
19
20
|
env:
|
20
21
|
GITHUB_TOKEN: ${{secrets.BUNDLE_GITHUB__COM}}
|
data/.github/workflows/ruby.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.0
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1
|
-
# automatic_release_gem 0.1.
|
1
|
+
# automatic_release_gem 0.1.8 (Mai 25, 2024)
|
2
|
+
|
3
|
+
* Update CI
|
4
|
+
|
5
|
+
*Marcelo Toledo*
|
6
|
+
|
7
|
+
## automatic_release_gem 0.1.7 (Mai 25, 2024)
|
8
|
+
|
9
|
+
* Bump Ruby version
|
10
|
+
* Bump Gems
|
11
|
+
|
12
|
+
*Marcelo Toledo*
|
13
|
+
|
14
|
+
## automatic_release_gem 0.1.6 (Apr 30, 2022)
|
2
15
|
|
3
16
|
* Bump Ruby version
|
4
17
|
* Bump Gems
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
automatic_release_gem (0.1.
|
4
|
+
automatic_release_gem (0.1.8)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -9,61 +9,78 @@ GEM
|
|
9
9
|
ast (2.4.2)
|
10
10
|
byebug (11.1.3)
|
11
11
|
coderay (1.1.3)
|
12
|
-
diff-lcs (1.5.
|
12
|
+
diff-lcs (1.5.1)
|
13
13
|
docile (1.4.0)
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
json (2.7.2)
|
15
|
+
language_server-protocol (3.17.0.3)
|
16
|
+
method_source (1.1.0)
|
17
|
+
parallel (1.24.0)
|
18
|
+
parser (3.3.1.0)
|
17
19
|
ast (~> 2.4.1)
|
18
|
-
|
20
|
+
racc
|
21
|
+
pry (0.14.2)
|
19
22
|
coderay (~> 1.1)
|
20
23
|
method_source (~> 1.0)
|
21
|
-
pry-byebug (3.
|
24
|
+
pry-byebug (3.10.1)
|
22
25
|
byebug (~> 11.0)
|
23
|
-
pry (
|
26
|
+
pry (>= 0.13, < 0.15)
|
27
|
+
racc (1.8.0)
|
24
28
|
rainbow (3.1.1)
|
25
|
-
rake (13.
|
26
|
-
regexp_parser (2.
|
27
|
-
rexml (3.2.
|
28
|
-
|
29
|
-
|
30
|
-
rspec-
|
31
|
-
rspec-
|
32
|
-
|
33
|
-
|
34
|
-
|
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)
|
34
|
+
rspec-core (~> 3.13.0)
|
35
|
+
rspec-expectations (~> 3.13.0)
|
36
|
+
rspec-mocks (~> 3.13.0)
|
37
|
+
rspec-core (3.13.0)
|
38
|
+
rspec-support (~> 3.13.0)
|
39
|
+
rspec-expectations (3.13.0)
|
35
40
|
diff-lcs (>= 1.2.0, < 2.0)
|
36
|
-
rspec-support (~> 3.
|
37
|
-
rspec-mocks (3.
|
41
|
+
rspec-support (~> 3.13.0)
|
42
|
+
rspec-mocks (3.13.1)
|
38
43
|
diff-lcs (>= 1.2.0, < 2.0)
|
39
|
-
rspec-support (~> 3.
|
40
|
-
rspec-support (3.
|
41
|
-
rubocop (1.
|
44
|
+
rspec-support (~> 3.13.0)
|
45
|
+
rspec-support (3.13.1)
|
46
|
+
rubocop (1.64.0)
|
47
|
+
json (~> 2.3)
|
48
|
+
language_server-protocol (>= 3.17.0)
|
42
49
|
parallel (~> 1.10)
|
43
|
-
parser (>= 3.
|
50
|
+
parser (>= 3.3.0.2)
|
44
51
|
rainbow (>= 2.2.2, < 4.0)
|
45
52
|
regexp_parser (>= 1.8, < 3.0)
|
46
|
-
rexml
|
47
|
-
rubocop-ast (>= 1.
|
53
|
+
rexml (>= 3.2.5, < 4.0)
|
54
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
48
55
|
ruby-progressbar (~> 1.7)
|
49
|
-
unicode-display_width (>=
|
50
|
-
rubocop-ast (1.
|
51
|
-
parser (>= 3.
|
52
|
-
rubocop-
|
53
|
-
rubocop (
|
54
|
-
|
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)
|
55
66
|
rubocop-rake (0.6.0)
|
56
67
|
rubocop (~> 1.0)
|
57
|
-
rubocop-rspec (2.
|
58
|
-
rubocop (~> 1.
|
59
|
-
|
60
|
-
|
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)
|
75
|
+
ruby-progressbar (1.13.0)
|
76
|
+
simplecov (0.22.0)
|
61
77
|
docile (~> 1.1)
|
62
78
|
simplecov-html (~> 0.11)
|
63
79
|
simplecov_json_formatter (~> 0.1)
|
64
80
|
simplecov-html (0.12.3)
|
65
81
|
simplecov_json_formatter (0.1.4)
|
66
|
-
|
82
|
+
strscan (3.1.0)
|
83
|
+
unicode-display_width (2.5.0)
|
67
84
|
|
68
85
|
PLATFORMS
|
69
86
|
ruby
|
@@ -81,4 +98,4 @@ DEPENDENCIES
|
|
81
98
|
simplecov
|
82
99
|
|
83
100
|
BUNDLED WITH
|
84
|
-
2.
|
101
|
+
2.5.10
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.description = 'To test automatic publication of a gem by GitHub-Actions.'
|
13
13
|
spec.homepage = 'https://github.com/marcelotoledo5000/automatic_release_gem'
|
14
14
|
spec.license = 'MIT'
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new('>=
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 3.3.0')
|
16
16
|
|
17
17
|
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
18
18
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: automatic_release_gem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marcelo Toledo
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: To test automatic publication of a gem by GitHub-Actions.
|
14
14
|
email:
|
@@ -48,7 +48,7 @@ metadata:
|
|
48
48
|
source_code_uri: https://github.com/marcelotoledo5000/automatic_release_gem
|
49
49
|
changelog_uri: https://github.com/marcelotoledo5000/automatic_release_gem/blob/master/CHANGELOG.md
|
50
50
|
rubygems_mfa_required: 'true'
|
51
|
-
post_install_message:
|
51
|
+
post_install_message:
|
52
52
|
rdoc_options: []
|
53
53
|
require_paths:
|
54
54
|
- lib
|
@@ -56,15 +56,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version:
|
59
|
+
version: 3.3.0
|
60
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
61
|
requirements:
|
62
62
|
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
64
|
version: '0'
|
65
65
|
requirements: []
|
66
|
-
rubygems_version: 3.
|
67
|
-
signing_key:
|
66
|
+
rubygems_version: 3.5.9
|
67
|
+
signing_key:
|
68
68
|
specification_version: 4
|
69
69
|
summary: To test automatic publication of a gem by GitHub-Actions.
|
70
70
|
test_files: []
|