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 +4 -4
- data/.github/workflows/release.yml +19 -9
- data/README.md +1 -1
- data/lib/rails_engine_toolkit/version.rb +1 -1
- data/rails_engine_toolkit.gemspec +3 -3
- 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: 6caafe59babe221cf077e718a8ab82ae8a1d2da52a333ff2c239bab1fd448dbf
|
|
4
|
+
data.tar.gz: 4ad92d3ae80851eb5ef5f09bf4128e0f8e425e30f68e2af46b3d7b11ab8bb6b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b85d449cf98fc3450f63dedb9156dde078d46033ed22e78bed4629ae7bf6a05e7133bcbc89e388c066e26decaabe5f5fdfd6483a5f9adc4d6843a08e0074c44b
|
|
7
|
+
data.tar.gz: e4e78314a17cf6084f193138a9d186ffa98ba3a46064d8f5c56cc827cb8f117b4929fc494d86865fa6415d07fe7a5f2314a9031bf0859c67efc34449c7d82447
|
|
@@ -6,17 +6,27 @@ on:
|
|
|
6
6
|
- "v*"
|
|
7
7
|
|
|
8
8
|
jobs:
|
|
9
|
-
|
|
9
|
+
push:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
permissions:
|
|
12
|
-
contents:
|
|
12
|
+
contents: write
|
|
13
|
+
id-token: write
|
|
14
|
+
|
|
13
15
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
15
|
-
|
|
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.
|
|
23
|
+
ruby-version: "3.2"
|
|
18
24
|
bundler-cache: true
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
@@ -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 = ['
|
|
9
|
-
spec.email = ['
|
|
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/
|
|
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.
|
|
4
|
+
version: 0.6.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
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
|
-
-
|
|
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/
|
|
113
|
+
homepage: https://github.com/juanfurattini/rails_engine_toolkit
|
|
114
114
|
licenses:
|
|
115
115
|
- MIT
|
|
116
116
|
metadata:
|
|
117
|
-
homepage_uri: https://github.com/
|
|
118
|
-
source_code_uri: https://github.com/
|
|
119
|
-
changelog_uri: https://github.com/
|
|
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: []
|