nextgen 0.33.0 → 0.34.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 +4 -4
- data/lib/nextgen/generators/sidekiq.rb +1 -5
- data/lib/nextgen/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d8052e997b47b91d8f1e5a29b527f57ee116716bc4b89499200f56c38001aa1
|
4
|
+
data.tar.gz: 36841a8c6093570ea8072c41a1715f3feb84c0d162beae83d6fd89013dc20b8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a78ac598e3a9df39c77c613624721c329260dc01b678ddbe3a4897c34cd41479d4c562ea7b125a7a21f627194636a93dcb1e7d81f01b1a477c8ade874c9f83e
|
7
|
+
data.tar.gz: a7ee318622843230908e05e5bc803028e1d23ed8aeae1141570e662fb6e9ddd0a43fbde2d03110877a2dba8c514655b4be01d990876d8abcfd83617c6689661a
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
say_git "Install the sidekiq gem in the :production group, with a binstub"
|
4
|
-
install_gem "sidekiq", version: "~>
|
4
|
+
install_gem "sidekiq", version: "~> 8.0", group: :production
|
5
5
|
binstub "sidekiq"
|
6
6
|
|
7
7
|
say_git "Add a sidekiq entry to the Procfile"
|
@@ -12,10 +12,6 @@ uncomment_lines "config/environments/production.rb", /config\.active_job/
|
|
12
12
|
gsub_file "config/environments/production.rb",
|
13
13
|
/active_job\.queue_adapter\s*=\s*:.+/,
|
14
14
|
"active_job.queue_adapter = :sidekiq"
|
15
|
-
gsub_file "config/environments/production.rb", " (and separate queues per environment)", ""
|
16
|
-
gsub_file "config/environments/production.rb",
|
17
|
-
/queue_name_prefix = .*$/,
|
18
|
-
"queue_name_prefix = nil # Not supported by sidekiq"
|
19
15
|
|
20
16
|
say_git "Mount the Sidekiq web console at /sidekiq, secured with basic auth"
|
21
17
|
copy_file "config/initializers/sidekiq.rb"
|
data/lib/nextgen/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +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.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brictson
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-05 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: railties
|
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
- !ruby/object:Gem::Version
|
226
226
|
version: '0'
|
227
227
|
requirements: []
|
228
|
-
rubygems_version: 3.6.
|
228
|
+
rubygems_version: 3.6.6
|
229
229
|
specification_version: 4
|
230
230
|
summary: Generate your next Rails app interactively!
|
231
231
|
test_files: []
|