rails_engine_toolkit 0.6.3 → 0.6.4

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: 2daf757686e083799345227ffbacbb0fe9d53915f764a82320049f23202aab1f
4
- data.tar.gz: d0e663fa492f7f6f2992cd0b2f9ad7ec6e80c1c772baf385f4537410461b407e
3
+ metadata.gz: 6caafe59babe221cf077e718a8ab82ae8a1d2da52a333ff2c239bab1fd448dbf
4
+ data.tar.gz: 4ad92d3ae80851eb5ef5f09bf4128e0f8e425e30f68e2af46b3d7b11ab8bb6b0
5
5
  SHA512:
6
- metadata.gz: b03b80e939f4e62b57471509c80241b4e7ca2157f8db29a6c7ae8b38e79df651633839bd50135546234418076b9d89f3e1c4de17a58b490372b54a81a440915c
7
- data.tar.gz: c537ed36c0a79ac052eadeb992f38ddb5fcb526d5f057f855708feeee988b30188e704ed95f7a59318fd5742ec70e03b995d4230ac13b899092e8c9ef461e183
6
+ metadata.gz: b85d449cf98fc3450f63dedb9156dde078d46033ed22e78bed4629ae7bf6a05e7133bcbc89e388c066e26decaabe5f5fdfd6483a5f9adc4d6843a08e0074c44b
7
+ data.tar.gz: e4e78314a17cf6084f193138a9d186ffa98ba3a46064d8f5c56cc827cb8f117b4929fc494d86865fa6415d07fe7a5f2314a9031bf0859c67efc34449c7d82447
@@ -6,17 +6,27 @@ on:
6
6
  - "v*"
7
7
 
8
8
  jobs:
9
- publish:
9
+ push:
10
10
  runs-on: ubuntu-latest
11
11
  permissions:
12
- contents: read
12
+ contents: write
13
+ id-token: write
14
+
13
15
  steps:
14
- - uses: actions/checkout@v4
15
- - uses: ruby/setup-ruby@v1
16
+ - uses: actions/checkout@v5
17
+ with:
18
+ persist-credentials: false
19
+
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
16
22
  with:
17
- ruby-version: "3.3"
23
+ ruby-version: "3.2"
18
24
  bundler-cache: true
19
- - run: gem build rails_engine_toolkit.gemspec
20
- - run: gem push *.gem
21
- env:
22
- RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
25
+
26
+ - name: Run test suite
27
+ run: bundle exec rspec
28
+
29
+ - name: Run RuboCop
30
+ run: bundle exec rubocop
31
+
32
+ - uses: rubygems/release-gem@v1
data/README.md CHANGED
@@ -71,7 +71,7 @@ bundle exec rubocop
71
71
 
72
72
  ```bash
73
73
  gem build rails_engine_toolkit.gemspec
74
- gem push rails_engine_toolkit-0.6.3.gem
74
+ gem push rails_engine_toolkit-0.6.4.gem
75
75
  ```
76
76
 
77
77
  After it is published, consumers can install it with:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsEngineToolkit
4
- VERSION = '0.6.3'
4
+ VERSION = '0.6.4'
5
5
  end
@@ -5,13 +5,13 @@ require_relative 'lib/rails_engine_toolkit/version'
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'rails_engine_toolkit'
7
7
  spec.version = RailsEngineToolkit::VERSION
8
- spec.authors = ['Your Name']
9
- spec.email = ['you@example.com']
8
+ spec.authors = ['Juan Furattini']
9
+ spec.email = ['juan.furattini@gmail.com']
10
10
 
11
11
  spec.summary = 'Reusable CLI and generators for Rails engines'
12
12
  spec.description =
13
13
  'Creates and manages internal Rails engines with configurable conventions, safe file mutations, parser-assisted route inspection, engine-specific migration installation, and Rails install generators.'
14
- spec.homepage = 'https://github.com/your-org/rails_engine_toolkit'
14
+ spec.homepage = 'https://github.com/juanfurattini/rails_engine_toolkit'
15
15
  spec.license = 'MIT'
16
16
  spec.required_ruby_version = '>= 3.2'
17
17
 
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_engine_toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
- - Your Name
7
+ - Juan Furattini
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
@@ -42,7 +42,7 @@ description: Creates and manages internal Rails engines with configurable conven
42
42
  safe file mutations, parser-assisted route inspection, engine-specific migration
43
43
  installation, and Rails install generators.
44
44
  email:
45
- - you@example.com
45
+ - juan.furattini@gmail.com
46
46
  executables:
47
47
  - engine-toolkit
48
48
  extensions: []
@@ -110,13 +110,13 @@ files:
110
110
  - test/fixtures/host_app/config/boot.rb
111
111
  - test/fixtures/host_app/config/environment.rb
112
112
  - test/fixtures/host_app/config/routes.rb
113
- homepage: https://github.com/your-org/rails_engine_toolkit
113
+ homepage: https://github.com/juanfurattini/rails_engine_toolkit
114
114
  licenses:
115
115
  - MIT
116
116
  metadata:
117
- homepage_uri: https://github.com/your-org/rails_engine_toolkit
118
- source_code_uri: https://github.com/your-org/rails_engine_toolkit
119
- changelog_uri: https://github.com/your-org/rails_engine_toolkit/releases
117
+ homepage_uri: https://github.com/juanfurattini/rails_engine_toolkit
118
+ source_code_uri: https://github.com/juanfurattini/rails_engine_toolkit
119
+ changelog_uri: https://github.com/juanfurattini/rails_engine_toolkit/releases
120
120
  rubygems_mfa_required: 'true'
121
121
  post_install_message:
122
122
  rdoc_options: []