nextgen 0.22.0 → 0.23.0

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: ab42df3afedd51d12bad9ba602f2cc8d6f1ab94af01305c6c7beac8ed6430f42
4
- data.tar.gz: 3c1956f80e9780ce64813080ee27e377821f28fdecc8ab54d1a92610ef7ad9a7
3
+ metadata.gz: ccbe3efa90a32fceeb62ba7b8ccfb7b138a43d3c301e6491763a4103bc142991
4
+ data.tar.gz: b2845c59c5170a82b81b1e55ec836a342bb51d32ab031575db051987d62d6424
5
5
  SHA512:
6
- metadata.gz: 20a0a482b9c6abc27a2394573a70ebdf40f68222718afdf3a0605769af67c3718168da5a288520334219c4ebeb2ea9231e478ff4d55e9f157e8a9e771af71f64
7
- data.tar.gz: 5a9d0e288814f314093cacf5919e683c531083baa16f511ef35d9ba6d18e1daf0134201dae8b98587a75adb3e923653cdf21e35e01aeff9851d0bab2aa4e5199
6
+ metadata.gz: b3dea1fc75cbf2df5e483efc6bbd025dd8994f273b078351182aacceb66a69ade48a186cce0f4ce4a6e4fa1206f9fcf7bd53efe448cdb3be8e8bad808cd12707
7
+ data.tar.gz: 86bed37b89d18353da4d09a1004b6a9267c2a82f56f0ca398a3f6c5935a3639260722a325f7b699fab60cf5d86a41f7c205ea885cbdc0f017a9cc3865357110f
@@ -117,7 +117,8 @@ say_git "Remove sprockets"
117
117
  remove_file "config/initializers/assets.rb"
118
118
  comment_lines "config/environments/development.rb", /^\s*config\.assets\./
119
119
  comment_lines "config/environments/production.rb", /^\s*config\.assets\./
120
- gsub_file "app/views/layouts/application.html.erb", /^.*<%= stylesheet_link_tag.*$/, ""
120
+ gsub_file "app/views/layouts/application.html.erb", /^.*<%= javascript_include_tag.*\n/, ""
121
+ gsub_file "app/views/layouts/application.html.erb", /^.*<%= stylesheet_link_tag.*\n/, ""
121
122
  remove_gem "sprockets-rails"
122
123
 
123
124
  if File.exist?(".github/workflows/ci.yml")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nextgen
4
- VERSION = "0.22.0"
4
+ VERSION = "0.23.0"
5
5
  end
@@ -8,4 +8,4 @@ These environment variables affect how the app functions when deployed in produc
8
8
  - `RAILS_ENV` **REQUIRED** - "production"
9
9
  - `RAILS_MAX_THREADS` - Number of threads per Puma process (default: 3)
10
10
  - `SECRET_KEY_BASE` **REQUIRED** - Unique, secret key used to encrypt and sign cookies and other sensitive data
11
- - `WEB_CONCURRENCY` - Number of Puma processes (default: number of CPUs)
11
+ - `WEB_CONCURRENCY` - Number of Puma processes (default: 1)
@@ -3,4 +3,6 @@
3
3
  return unless Gem.loaded_specs.key?("rubocop")
4
4
 
5
5
  require "rubocop/rake_task"
6
- RuboCop::RakeTask.new
6
+ RuboCop::RakeTask.new(:rubocop) do |task|
7
+ task.options.push "-c", ".rubocop.yml"
8
+ 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.22.0
4
+ version: 0.23.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-09-07 00:00:00.000000000 Z
11
+ date: 2024-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties