nextgen 0.20.0 → 0.21.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: '08e56651b3e6d88022098471a5b3e04b20ca703ac5e973425fb68f806b271e4a'
4
- data.tar.gz: fed2715b9bdb7625434ef6983a15118e1fe29cd3f64a0f182928c1805920f7ed
3
+ metadata.gz: f5e200d3e6e25f5397dfa61209e92088f53115e54fed6aeee753899fa3978011
4
+ data.tar.gz: 87e09910259c3d83d974d4fb974fda1172566196dc0062910ced93f7f9a540c4
5
5
  SHA512:
6
- metadata.gz: 5481874c31115de5229ba346ede332453731c46604b01e974ee1d34471ff1dfcc290dbcdbf2170f03e64b44333d1c83ced987204c6c43abf58637c416e18628c
7
- data.tar.gz: 679b4f278c8493da2ed8b34df79c761073f010262bf66eff305a974051f1a1ff52dd89542dc6a852bbacbe7e4a4a46fda95355d68e7cc0e8e6bfb55c53c31682
6
+ metadata.gz: f8a17ffed163b4a3e1490d0ef48ee02514bd508d1c6f09739c60b58b79e2085aef6c0cf9002d8a5c5fb0a82fd5ba3f79821e4e058521c5cab5e5467401e6814d
7
+ data.tar.gz: 385623e44d389433962b84fb87fe4afa6b6a26e07a0e6c79decdfb7def59a00a86095c6c1d31330622545a5624650234ad3a7e23dac0040e304a4007292b10fa
data/README.md CHANGED
@@ -87,6 +87,7 @@ Nextgen can install and configure your choice of these recommended gems:
87
87
  - [factory_bot_rails](https://github.com/thoughtbot/factory_bot_rails)
88
88
  - [good_migrations](https://github.com/testdouble/good-migrations)
89
89
  - [letter_opener](https://github.com/ryanb/letter_opener)
90
+ - [mocha](https://github.com/freerange/mocha)
90
91
  - [overcommit](https://github.com/sds/overcommit)
91
92
  - [pgcli-rails](https://github.com/mattbrictson/pgcli-rails)
92
93
  - [rack-canonical-host](https://github.com/tylerhunt/rack-canonical-host)
@@ -90,6 +90,11 @@ letter_opener:
90
90
  description: "Install letter_opener gem to use with Action Mailer in dev"
91
91
  requires: action_mailer
92
92
 
93
+ mocha:
94
+ prompt: "mocha"
95
+ description: "Install mocha gem for fluent stubs/mocks in minitest"
96
+ requires: minitest
97
+
93
98
  open_browser_on_start:
94
99
  prompt: "Open browser on startup"
95
100
  description: "Configure puma to launch browser on startup in development"
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ install_gem "mocha", group: :test
4
+ copy_test_support_file "mocha.rb"
@@ -61,7 +61,7 @@ if File.exist?("test/application_system_test_case.rb")
61
61
  end
62
62
 
63
63
  say_git "Install modern-normalize and base stylesheets"
64
- add_yarn_package "modern-normalize@^2.0.0"
64
+ add_yarn_package "modern-normalize@^3.0.0"
65
65
  copy_file "app/frontend/stylesheets/index.css"
66
66
  copy_file "app/frontend/stylesheets/base.css"
67
67
  copy_file "app/frontend/stylesheets/reset.css"
@@ -130,6 +130,10 @@ module Nextgen
130
130
  %w[bootstrap bulma postcss sass].include?(css) || %w[webpack esbuild rollup].include?(javascript)
131
131
  end
132
132
 
133
+ def minitest?
134
+ @test_framework == "minitest"
135
+ end
136
+
133
137
  def rspec?
134
138
  @test_framework == "rspec"
135
139
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nextgen
4
- VERSION = "0.20.0"
4
+ VERSION = "0.21.0"
5
5
  end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mocha/minitest"
4
+
5
+ # Reference: https://rubydoc.info/gems/mocha/Mocha/Configuration
6
+ Mocha.configure do |config|
7
+ config.strict_keyword_argument_matching = true
8
+ config.stubbing_method_on_nil = :prevent
9
+ config.stubbing_non_existent_method = :prevent
10
+ 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.20.0
4
+ version: 0.21.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-08-16 00:00:00.000000000 Z
11
+ date: 2024-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -120,6 +120,7 @@ files:
120
120
  - lib/nextgen/generators/home_controller.rb
121
121
  - lib/nextgen/generators/initial_git_commit.rb
122
122
  - lib/nextgen/generators/letter_opener.rb
123
+ - lib/nextgen/generators/mocha.rb
123
124
  - lib/nextgen/generators/node.rb
124
125
  - lib/nextgen/generators/open_browser_on_start.rb
125
126
  - lib/nextgen/generators/overcommit.rb
@@ -194,6 +195,7 @@ files:
194
195
  - template/test/support/capybara.rb.tt
195
196
  - template/test/support/factory_bot.rb
196
197
  - template/test/support/mailer.rb
198
+ - template/test/support/mocha.rb
197
199
  - template/test/support/shoulda.rb
198
200
  - template/test/support/vcr.rb.tt
199
201
  - template/test/support/webmock.rb
@@ -222,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
224
  - !ruby/object:Gem::Version
223
225
  version: '0'
224
226
  requirements: []
225
- rubygems_version: 3.5.11
227
+ rubygems_version: 3.5.18
226
228
  signing_key:
227
229
  specification_version: 4
228
230
  summary: Generate your next Rails app interactively!