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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cae7a114f28927aeca08642350b0f6fa8e1b40bcc0761e3263aba23d8e2d7fe0
4
- data.tar.gz: 3be796cc5c8966e754519a6b3ec62296a2c5733984a9a8fed97d0843f4baf70a
3
+ metadata.gz: 8aa670fdbe16b853d3529fc07b7cbb5029db46b46ef30066bb9e2c1e4caf2b59
4
+ data.tar.gz: ca3a30684dab8edd9bfa5532d4f268491a2d16e785ebff456e44efe113944b60
5
5
  SHA512:
6
- metadata.gz: ca77628909d5c4112acd3c4fb48a1d2cd34db618a1cacf3a293a8bd99e05103ab00ac403e80ee5548775c196f2adfd79a538786de1b6fd657074a17bd60cdacd
7
- data.tar.gz: d82a40374cbd39bf6c05e4c6641105d81c3eced5672f4e4f6fbbbb75d543a24b023dd83cdf9f8fd2e079f2d6c2b1a65a32ce0e89bbd396d69fc5efdedc2b9f8c
6
+ metadata.gz: f4ad3a531106fa86c03700f3d926a125a7a74bb486a2c35b897ce2fdb23547e1c9ec3994de9f7d2b2e3124bc7f2e874590992ec008409b2ad454b4ef397a516d
7
+ data.tar.gz: 420c1476571ce7ba13a35d7e858e43f8925a236b34be620a9963f791b114460d6298a608da1e9a85fff955536376694c0e9224bcffc9cc413f5b6353924a1142
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 Matt Brictson
3
+ Copyright (c) 2025 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
- - [annotate](https://github.com/ctran/annotate_models)
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)
@@ -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.1"
5
5
  end
@@ -5,6 +5,5 @@ require "mocha/minitest"
5
5
  # Reference: https://rubydoc.info/gems/mocha/Mocha/Configuration
6
6
  Mocha.configure do |config|
7
7
  config.strict_keyword_argument_matching = true
8
- config.stubbing_method_on_nil = :prevent
9
8
  config.stubbing_non_existent_method = :prevent
10
9
  end
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.30.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: 2024-11-07 00:00:00.000000000 Z
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/annotate.rb
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.5.22
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: []
@@ -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"