view_component 2.81.0 → 2.82.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bb20706245c43b9c5fa4d11087a2e98332bda53d659f7065874a3c0b8545547
|
|
4
|
+
data.tar.gz: 13821a1e91da8a8dce8270962b99aa3b84fddb9731f99c2e2acfd143ad017836
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b0ebf7ac54fc2c82374b29f9cceadfe55af73516ad2e4c65dad69cd65a7c63de3e00ef9cdba8b359c1061309f9a0d2f90344374feec2b37211fbfb36282c96b
|
|
7
|
+
data.tar.gz: 48e156dcc5fa1ac9a6cff64e4cb585d528103452938a515d1e3598b505b03188e89362c393c86c0a05437f9a8c28f22e937e3d706f3da17ae03a7c1371728505
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
class ViewComponentsSystemTestController < Rails::ApplicationController # :nodoc:
|
|
3
|
+
class ViewComponentsSystemTestController < ActionController::Base # :nodoc:
|
|
6
4
|
def system_test_entrypoint
|
|
7
5
|
render file: "./tmp/view_components/#{params.permit(:file)[:file]}"
|
|
8
6
|
end
|
data/docs/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@ nav_order: 5
|
|
|
10
10
|
|
|
11
11
|
## main
|
|
12
12
|
|
|
13
|
+
## 2.82.0
|
|
14
|
+
|
|
15
|
+
* Revert "Avoid loading ActionView::Base during initialization (#1528)"
|
|
16
|
+
|
|
17
|
+
*Jon Rohan*
|
|
18
|
+
|
|
19
|
+
* Fix tests using `with_rendered_component_path` with custom layouts.
|
|
20
|
+
|
|
21
|
+
*Ian Hollander*
|
|
22
|
+
|
|
13
23
|
## 2.81.0
|
|
14
24
|
|
|
15
25
|
* Adjust the way response objects are set on the preview controller to work around a recent change in Rails main.
|
data/lib/view_component/base.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require "rails"
|
|
4
|
-
require "view_component/
|
|
4
|
+
require "view_component/base"
|
|
5
5
|
|
|
6
6
|
module ViewComponent
|
|
7
7
|
class Engine < Rails::Engine # :nodoc:
|
|
8
|
-
config.view_component = ViewComponent::
|
|
8
|
+
config.view_component = ViewComponent::Base.config
|
|
9
9
|
|
|
10
10
|
rake_tasks do
|
|
11
11
|
load "view_component/rails/tasks/view_component.rake"
|
|
@@ -14,6 +14,9 @@ module ViewComponent
|
|
|
14
14
|
initializer "view_component.set_configs" do |app|
|
|
15
15
|
options = app.config.view_component
|
|
16
16
|
|
|
17
|
+
%i[generate preview_controller preview_route show_previews_source].each do |config_option|
|
|
18
|
+
options[config_option] ||= ViewComponent::Base.public_send(config_option)
|
|
19
|
+
end
|
|
17
20
|
options.instrumentation_enabled = false if options.instrumentation_enabled.nil?
|
|
18
21
|
options.render_monkey_patch_enabled = true if options.render_monkey_patch_enabled.nil?
|
|
19
22
|
options.show_previews = (Rails.env.development? || Rails.env.test?) if options.show_previews.nil?
|
|
@@ -36,8 +39,6 @@ module ViewComponent
|
|
|
36
39
|
|
|
37
40
|
initializer "view_component.enable_instrumentation" do |app|
|
|
38
41
|
ActiveSupport.on_load(:view_component) do
|
|
39
|
-
Base.config = app.config.view_component
|
|
40
|
-
|
|
41
42
|
if app.config.view_component.instrumentation_enabled.present?
|
|
42
43
|
# :nocov:
|
|
43
44
|
ViewComponent::Base.prepend(ViewComponent::Instrumentation)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: view_component
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.82.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ViewComponent Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|