automatic_release_gem 0.1.3 → 0.1.6
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/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +32 -0
- data/Gemfile +4 -4
- data/Gemfile.lock +37 -38
- data/README.md +10 -2
- data/automatic_release_gem.gemspec +1 -0
- data/lib/automatic_release_gem/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9b35aec3d0370e3af7a67eb6d2eaa892b1e5d9f27e4d25407bc02366b5f024c
|
|
4
|
+
data.tar.gz: bd405e7188e3d9b6b0acada6e5b63f7ce9e7502207640bc31e0be834e61e77a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: daf7bf777cc5edfe998af555dffd620b76788396f70c5fe63d5531d9ae443672bd21b903c55035bc4e16eeb3318f2a2a625454c6a67ae8409350e89fda13f7f0
|
|
7
|
+
data.tar.gz: eb8fdbb10aa852c44f92a16bf5ef837a60970d805d8020bbab51b2b2d473623c06ef557492ba6e3311a1d6a9768bc1af2bc0f76f250b9a07177e94d98b5549af
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.1.0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
# automatic_release_gem 0.1.6 (Apr 30, 2022)
|
|
2
|
+
|
|
3
|
+
* Bump Ruby version
|
|
4
|
+
* Bump Gems
|
|
5
|
+
|
|
6
|
+
*Marcelo Toledo*
|
|
7
|
+
|
|
8
|
+
## automatic_release_gem 0.1.5 (Nov 14, 2021)
|
|
9
|
+
|
|
10
|
+
* Bump Ruby version
|
|
11
|
+
* Bump Gems
|
|
12
|
+
|
|
13
|
+
*Marcelo Toledo*
|
|
14
|
+
|
|
15
|
+
## automatic_release_gem 0.1.4 (Mar 01, 2021)
|
|
16
|
+
|
|
17
|
+
* Update README.md
|
|
18
|
+
|
|
19
|
+
*Marcelo Toledo*
|
|
20
|
+
|
|
21
|
+
## automatic_release_gem 0.1.3 (Mar 01, 2021)
|
|
22
|
+
|
|
23
|
+
* Fix publisher plugin
|
|
24
|
+
|
|
25
|
+
*Marcelo Toledo*
|
|
26
|
+
|
|
27
|
+
## automatic_release_gem 0.1.2 (Mar 01, 2021)
|
|
28
|
+
|
|
29
|
+
* Changes to automatic release
|
|
30
|
+
|
|
31
|
+
*Marcelo Toledo*
|
|
32
|
+
|
|
1
33
|
## automatic_release_gem 0.1.1 (Feb 05, 2021)
|
|
2
34
|
|
|
3
35
|
* Fix bundler version
|
data/Gemfile
CHANGED
|
@@ -4,12 +4,12 @@ source 'https://rubygems.org'
|
|
|
4
4
|
|
|
5
5
|
gemspec
|
|
6
6
|
|
|
7
|
-
gem 'rake'
|
|
7
|
+
gem 'rake'
|
|
8
8
|
|
|
9
9
|
group :development, :test do
|
|
10
|
-
gem 'pry-byebug'
|
|
11
|
-
gem 'rspec'
|
|
12
|
-
gem 'rubocop',
|
|
10
|
+
gem 'pry-byebug'
|
|
11
|
+
gem 'rspec'
|
|
12
|
+
gem 'rubocop', require: false
|
|
13
13
|
gem 'rubocop-performance', require: false
|
|
14
14
|
gem 'rubocop-rake', require: false
|
|
15
15
|
gem 'rubocop-rspec', require: false
|
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.6)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -9,11 +9,11 @@ GEM
|
|
|
9
9
|
ast (2.4.2)
|
|
10
10
|
byebug (11.1.3)
|
|
11
11
|
coderay (1.1.3)
|
|
12
|
-
diff-lcs (1.
|
|
13
|
-
docile (1.
|
|
12
|
+
diff-lcs (1.5.0)
|
|
13
|
+
docile (1.4.0)
|
|
14
14
|
method_source (1.0.0)
|
|
15
|
-
parallel (1.
|
|
16
|
-
parser (3.
|
|
15
|
+
parallel (1.22.1)
|
|
16
|
+
parser (3.1.2.0)
|
|
17
17
|
ast (~> 2.4.1)
|
|
18
18
|
pry (0.13.1)
|
|
19
19
|
coderay (~> 1.1)
|
|
@@ -21,50 +21,49 @@ GEM
|
|
|
21
21
|
pry-byebug (3.9.0)
|
|
22
22
|
byebug (~> 11.0)
|
|
23
23
|
pry (~> 0.13.0)
|
|
24
|
-
rainbow (3.
|
|
25
|
-
rake (13.0.
|
|
26
|
-
regexp_parser (2.
|
|
27
|
-
rexml (3.2.
|
|
28
|
-
rspec (3.
|
|
29
|
-
rspec-core (~> 3.
|
|
30
|
-
rspec-expectations (~> 3.
|
|
31
|
-
rspec-mocks (~> 3.
|
|
32
|
-
rspec-core (3.
|
|
33
|
-
rspec-support (~> 3.
|
|
34
|
-
rspec-expectations (3.
|
|
24
|
+
rainbow (3.1.1)
|
|
25
|
+
rake (13.0.6)
|
|
26
|
+
regexp_parser (2.3.1)
|
|
27
|
+
rexml (3.2.5)
|
|
28
|
+
rspec (3.11.0)
|
|
29
|
+
rspec-core (~> 3.11.0)
|
|
30
|
+
rspec-expectations (~> 3.11.0)
|
|
31
|
+
rspec-mocks (~> 3.11.0)
|
|
32
|
+
rspec-core (3.11.0)
|
|
33
|
+
rspec-support (~> 3.11.0)
|
|
34
|
+
rspec-expectations (3.11.0)
|
|
35
35
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
36
|
-
rspec-support (~> 3.
|
|
37
|
-
rspec-mocks (3.
|
|
36
|
+
rspec-support (~> 3.11.0)
|
|
37
|
+
rspec-mocks (3.11.1)
|
|
38
38
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
39
|
-
rspec-support (~> 3.
|
|
40
|
-
rspec-support (3.
|
|
41
|
-
rubocop (1.
|
|
39
|
+
rspec-support (~> 3.11.0)
|
|
40
|
+
rspec-support (3.11.0)
|
|
41
|
+
rubocop (1.28.2)
|
|
42
42
|
parallel (~> 1.10)
|
|
43
|
-
parser (>= 3.
|
|
43
|
+
parser (>= 3.1.0.0)
|
|
44
44
|
rainbow (>= 2.2.2, < 4.0)
|
|
45
45
|
regexp_parser (>= 1.8, < 3.0)
|
|
46
46
|
rexml
|
|
47
|
-
rubocop-ast (>= 1.
|
|
47
|
+
rubocop-ast (>= 1.17.0, < 2.0)
|
|
48
48
|
ruby-progressbar (~> 1.7)
|
|
49
49
|
unicode-display_width (>= 1.4.0, < 3.0)
|
|
50
|
-
rubocop-ast (1.
|
|
51
|
-
parser (>=
|
|
52
|
-
rubocop-performance (1.
|
|
53
|
-
rubocop (>=
|
|
50
|
+
rubocop-ast (1.17.0)
|
|
51
|
+
parser (>= 3.1.1.0)
|
|
52
|
+
rubocop-performance (1.13.3)
|
|
53
|
+
rubocop (>= 1.7.0, < 2.0)
|
|
54
54
|
rubocop-ast (>= 0.4.0)
|
|
55
|
-
rubocop-rake (0.
|
|
56
|
-
rubocop
|
|
57
|
-
rubocop-rspec (2.2.0)
|
|
55
|
+
rubocop-rake (0.6.0)
|
|
58
56
|
rubocop (~> 1.0)
|
|
59
|
-
|
|
57
|
+
rubocop-rspec (2.10.0)
|
|
58
|
+
rubocop (~> 1.19)
|
|
60
59
|
ruby-progressbar (1.11.0)
|
|
61
60
|
simplecov (0.21.2)
|
|
62
61
|
docile (~> 1.1)
|
|
63
62
|
simplecov-html (~> 0.11)
|
|
64
63
|
simplecov_json_formatter (~> 0.1)
|
|
65
64
|
simplecov-html (0.12.3)
|
|
66
|
-
simplecov_json_formatter (0.1.
|
|
67
|
-
unicode-display_width (2.
|
|
65
|
+
simplecov_json_formatter (0.1.4)
|
|
66
|
+
unicode-display_width (2.1.0)
|
|
68
67
|
|
|
69
68
|
PLATFORMS
|
|
70
69
|
ruby
|
|
@@ -72,14 +71,14 @@ PLATFORMS
|
|
|
72
71
|
|
|
73
72
|
DEPENDENCIES
|
|
74
73
|
automatic_release_gem!
|
|
75
|
-
pry-byebug
|
|
76
|
-
rake
|
|
77
|
-
rspec
|
|
78
|
-
rubocop
|
|
74
|
+
pry-byebug
|
|
75
|
+
rake
|
|
76
|
+
rspec
|
|
77
|
+
rubocop
|
|
79
78
|
rubocop-performance
|
|
80
79
|
rubocop-rake
|
|
81
80
|
rubocop-rspec
|
|
82
81
|
simplecov
|
|
83
82
|
|
|
84
83
|
BUNDLED WITH
|
|
85
|
-
2.
|
|
84
|
+
2.3.12
|
data/README.md
CHANGED
|
@@ -26,9 +26,17 @@ TODO: Write usage instructions here
|
|
|
26
26
|
|
|
27
27
|
## Development
|
|
28
28
|
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
30
|
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
32
|
+
|
|
33
|
+
## To Release
|
|
34
|
+
|
|
35
|
+
Fill the `CHANGELOG.md` with relevants update.
|
|
36
|
+
|
|
37
|
+
To automatic release a new version, update the version number in `lib/automatic_release_gem/version.rb` and merge it to `master` branch.
|
|
38
|
+
|
|
39
|
+
To manual release update the version 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).
|
|
32
40
|
|
|
33
41
|
## Contributing
|
|
34
42
|
|
|
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
20
20
|
spec.metadata['source_code_uri'] = 'https://github.com/marcelotoledo5000/automatic_release_gem'
|
|
21
21
|
spec.metadata['changelog_uri'] = 'https://github.com/marcelotoledo5000/automatic_release_gem/blob/master/CHANGELOG.md'
|
|
22
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
22
23
|
|
|
23
24
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
24
25
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
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.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcelo Toledo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: To test automatic publication of a gem by GitHub-Actions.
|
|
14
14
|
email:
|
|
@@ -47,6 +47,7 @@ metadata:
|
|
|
47
47
|
homepage_uri: https://github.com/marcelotoledo5000/automatic_release_gem
|
|
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
|
+
rubygems_mfa_required: 'true'
|
|
50
51
|
post_install_message:
|
|
51
52
|
rdoc_options: []
|
|
52
53
|
require_paths:
|
|
@@ -62,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
62
63
|
- !ruby/object:Gem::Version
|
|
63
64
|
version: '0'
|
|
64
65
|
requirements: []
|
|
65
|
-
rubygems_version: 3.1.
|
|
66
|
+
rubygems_version: 3.1.6
|
|
66
67
|
signing_key:
|
|
67
68
|
specification_version: 4
|
|
68
69
|
summary: To test automatic publication of a gem by GitHub-Actions.
|