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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b4478e6906014c3ff3ebf4f1735b9baa008881c670aa84afdc24eb5dd74b063
4
- data.tar.gz: 0dc863efcb5ee1595f19516f38e79474dbadb4837688ecfe1f9178de57c8e10e
3
+ metadata.gz: d9b35aec3d0370e3af7a67eb6d2eaa892b1e5d9f27e4d25407bc02366b5f024c
4
+ data.tar.gz: bd405e7188e3d9b6b0acada6e5b63f7ce9e7502207640bc31e0be834e61e77a4
5
5
  SHA512:
6
- metadata.gz: 95c636844139b8bb100e69c27c29ec020364635a56abbcddfad53a55e515030d96a0944f5dc90e91d4f75293080571d74e138e3b3c4a7d731b6afbccc5af4cb5
7
- data.tar.gz: 3349394a8df8ce6a00eeec6c3800bdfa3c25a2ccbd1b85b73aef63c03bf05a54d8c15eb863416745d5889fe98a6e87080b5ffabfeee6e56cc3eb4faa32e82a3a
6
+ metadata.gz: daf7bf777cc5edfe998af555dffd620b76788396f70c5fe63d5531d9ae443672bd21b903c55035bc4e16eeb3318f2a2a625454c6a67ae8409350e89fda13f7f0
7
+ data.tar.gz: eb8fdbb10aa852c44f92a16bf5ef837a60970d805d8020bbab51b2b2d473623c06ef557492ba6e3311a1d6a9768bc1af2bc0f76f250b9a07177e94d98b5549af
data/.rubocop.yml CHANGED
@@ -5,7 +5,7 @@ require:
5
5
 
6
6
  AllCops:
7
7
  NewCops: enable
8
- TargetRubyVersion: 3.0
8
+ TargetRubyVersion: 3.1
9
9
  Exclude:
10
10
  - 'Rakefile'
11
11
  - 'bin/**/*'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.0
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', '~> 13.0'
7
+ gem 'rake'
8
8
 
9
9
  group :development, :test do
10
- gem 'pry-byebug', '~> 3.9'
11
- gem 'rspec', '~> 3.10'
12
- gem 'rubocop', '~> 1.9', require: false
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.3)
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.4.4)
13
- docile (1.3.5)
12
+ diff-lcs (1.5.0)
13
+ docile (1.4.0)
14
14
  method_source (1.0.0)
15
- parallel (1.20.1)
16
- parser (3.0.0.0)
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.0.0)
25
- rake (13.0.3)
26
- regexp_parser (2.1.1)
27
- rexml (3.2.4)
28
- rspec (3.10.0)
29
- rspec-core (~> 3.10.0)
30
- rspec-expectations (~> 3.10.0)
31
- rspec-mocks (~> 3.10.0)
32
- rspec-core (3.10.1)
33
- rspec-support (~> 3.10.0)
34
- rspec-expectations (3.10.1)
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.10.0)
37
- rspec-mocks (3.10.2)
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.10.0)
40
- rspec-support (3.10.2)
41
- rubocop (1.11.0)
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.0.0.0)
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.2.0, < 2.0)
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.4.1)
51
- parser (>= 2.7.1.5)
52
- rubocop-performance (1.10.0)
53
- rubocop (>= 0.90.0, < 2.0)
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.5.1)
56
- rubocop
57
- rubocop-rspec (2.2.0)
55
+ rubocop-rake (0.6.0)
58
56
  rubocop (~> 1.0)
59
- rubocop-ast (>= 1.1.0)
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.2)
67
- unicode-display_width (2.0.0)
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 (~> 3.9)
76
- rake (~> 13.0)
77
- rspec (~> 3.10)
78
- rubocop (~> 1.9)
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.2.11
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 `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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`. 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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)/}) }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AutomaticReleaseGem
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.6'
5
5
  end
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.3
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: 2021-03-01 00:00:00.000000000 Z
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.4
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.