nextgen 0.30.0 → 0.31.0

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: cae7a114f28927aeca08642350b0f6fa8e1b40bcc0761e3263aba23d8e2d7fe0
4
- data.tar.gz: 3be796cc5c8966e754519a6b3ec62296a2c5733984a9a8fed97d0843f4baf70a
3
+ metadata.gz: 6d97c58da9daed0fce0a43f9134e985f9b58abca112b5afa2eb0dd2e07e59c66
4
+ data.tar.gz: 459a0f0ef97387c5a47d2dcff3b1f0ec2be0d3965bacdf5cab2ba8db2244441f
5
5
  SHA512:
6
- metadata.gz: ca77628909d5c4112acd3c4fb48a1d2cd34db618a1cacf3a293a8bd99e05103ab00ac403e80ee5548775c196f2adfd79a538786de1b6fd657074a17bd60cdacd
7
- data.tar.gz: d82a40374cbd39bf6c05e4c6641105d81c3eced5672f4e4f6fbbbb75d543a24b023dd83cdf9f8fd2e079f2d6c2b1a65a32ce0e89bbd396d69fc5efdedc2b9f8c
6
+ metadata.gz: 993117fe8a1eb4ea199fbfcaf704d33cd5c97552c0a2f4c4749b7f38ef7bf7760ecdee4b3ea6382e5c9401e7b08a75a0c4673561b7772d1a748bef85ec3d56fd
7
+ data.tar.gz: 4798def664ceefac1967e0f8f083d9508044787e370dc34643a44883a757f69fe035321ff756571b7d04b30fa36b4cf915052fc34426f5f3b89066823b3b5595
@@ -36,9 +36,9 @@ action_mailer:
36
36
  description: "Configure Action Mailer for testing"
37
37
  requires: action_mailer
38
38
 
39
- annotate:
40
- prompt: "Annotate Models"
41
- description: "Install annotate gem to auto-generate schema annotations"
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:
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ say_git "Install the annotaterb gem"
4
+ install_gem "annotaterb", group: :development
5
+
6
+ say_git "Run the annotaterb installer"
7
+ generate "annotate_rb:install"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nextgen
4
- VERSION = "0.30.0"
4
+ VERSION = "0.31.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nextgen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-11-07 00:00:00.000000000 Z
11
+ date: 2024-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -105,7 +105,7 @@ files:
105
105
  - lib/nextgen/ext/prompt/multilist.rb
106
106
  - lib/nextgen/generators.rb
107
107
  - lib/nextgen/generators/action_mailer.rb
108
- - lib/nextgen/generators/annotate.rb
108
+ - lib/nextgen/generators/annotaterb.rb
109
109
  - lib/nextgen/generators/base.rb
110
110
  - lib/nextgen/generators/basic_auth.rb
111
111
  - lib/nextgen/generators/bundler_audit.rb
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- install_gem "annotate", group: :development
4
- copy_file "lib/tasks/auto_annotate_models.rake"