nextgen 0.30.0 → 0.31.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/config/generators.yml +3 -3
- data/lib/nextgen/generators/annotaterb.rb +7 -0
- data/lib/nextgen/version.rb +1 -1
- data/template/test/support/mocha.rb +0 -1
- metadata +4 -7
- data/lib/nextgen/generators/annotate.rb +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8aa670fdbe16b853d3529fc07b7cbb5029db46b46ef30066bb9e2c1e4caf2b59
|
4
|
+
data.tar.gz: ca3a30684dab8edd9bfa5532d4f268491a2d16e785ebff456e44efe113944b60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4ad3a531106fa86c03700f3d926a125a7a74bb486a2c35b897ce2fdb23547e1c9ec3994de9f7d2b2e3124bc7f2e874590992ec008409b2ad454b4ef397a516d
|
7
|
+
data.tar.gz: 420c1476571ce7ba13a35d7e858e43f8925a236b34be620a9963f791b114460d6298a608da1e9a85fff955536376694c0e9224bcffc9cc413f5b6353924a1142
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -86,7 +86,7 @@ By default, Rails apps include RuboCop with a config defined by the [rubocop-rai
|
|
86
86
|
|
87
87
|
Nextgen can install and configure your choice of these recommended gems:
|
88
88
|
|
89
|
-
- [
|
89
|
+
- [annotaterb](https://github.com/drwl/annotaterb)
|
90
90
|
- [bundler-audit](https://github.com/rubysec/bundler-audit)
|
91
91
|
- [capybara-lockstep](https://github.com/makandra/capybara-lockstep)
|
92
92
|
- [dotenv](https://github.com/bkeepers/dotenv)
|
data/config/generators.yml
CHANGED
@@ -36,9 +36,9 @@ action_mailer:
|
|
36
36
|
description: "Configure Action Mailer for testing"
|
37
37
|
requires: action_mailer
|
38
38
|
|
39
|
-
|
40
|
-
prompt: "
|
41
|
-
description: "Install
|
39
|
+
annotaterb:
|
40
|
+
prompt: "AnnotateRb"
|
41
|
+
description: "Install annotaterb gem to auto-generate schema annotations"
|
42
42
|
requires: active_record
|
43
43
|
|
44
44
|
basic_auth:
|
data/lib/nextgen/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nextgen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brictson
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-04 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: railties
|
@@ -105,7 +104,7 @@ files:
|
|
105
104
|
- lib/nextgen/ext/prompt/multilist.rb
|
106
105
|
- lib/nextgen/generators.rb
|
107
106
|
- lib/nextgen/generators/action_mailer.rb
|
108
|
-
- lib/nextgen/generators/
|
107
|
+
- lib/nextgen/generators/annotaterb.rb
|
109
108
|
- lib/nextgen/generators/base.rb
|
110
109
|
- lib/nextgen/generators/basic_auth.rb
|
111
110
|
- lib/nextgen/generators/bundler_audit.rb
|
@@ -212,7 +211,6 @@ metadata:
|
|
212
211
|
source_code_uri: https://github.com/mattbrictson/nextgen
|
213
212
|
homepage_uri: https://github.com/mattbrictson/nextgen
|
214
213
|
rubygems_mfa_required: 'true'
|
215
|
-
post_install_message:
|
216
214
|
rdoc_options: []
|
217
215
|
require_paths:
|
218
216
|
- lib
|
@@ -227,8 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
225
|
- !ruby/object:Gem::Version
|
228
226
|
version: '0'
|
229
227
|
requirements: []
|
230
|
-
rubygems_version: 3.
|
231
|
-
signing_key:
|
228
|
+
rubygems_version: 3.6.2
|
232
229
|
specification_version: 4
|
233
230
|
summary: Generate your next Rails app interactively!
|
234
231
|
test_files: []
|