omg-actionview 8.0.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +25 -0
- data/MIT-LICENSE +21 -0
- data/README.rdoc +40 -0
- data/app/assets/javascripts/rails-ujs.esm.js +686 -0
- data/app/assets/javascripts/rails-ujs.js +630 -0
- data/lib/action_view/base.rb +316 -0
- data/lib/action_view/buffers.rb +165 -0
- data/lib/action_view/cache_expiry.rb +69 -0
- data/lib/action_view/context.rb +32 -0
- data/lib/action_view/dependency_tracker/erb_tracker.rb +159 -0
- data/lib/action_view/dependency_tracker/ruby_tracker.rb +43 -0
- data/lib/action_view/dependency_tracker/wildcard_resolver.rb +32 -0
- data/lib/action_view/dependency_tracker.rb +41 -0
- data/lib/action_view/deprecator.rb +7 -0
- data/lib/action_view/digestor.rb +130 -0
- data/lib/action_view/flows.rb +75 -0
- data/lib/action_view/gem_version.rb +17 -0
- data/lib/action_view/helpers/active_model_helper.rb +54 -0
- data/lib/action_view/helpers/asset_tag_helper.rb +680 -0
- data/lib/action_view/helpers/asset_url_helper.rb +473 -0
- data/lib/action_view/helpers/atom_feed_helper.rb +205 -0
- data/lib/action_view/helpers/cache_helper.rb +315 -0
- data/lib/action_view/helpers/capture_helper.rb +236 -0
- data/lib/action_view/helpers/content_exfiltration_prevention_helper.rb +70 -0
- data/lib/action_view/helpers/controller_helper.rb +42 -0
- data/lib/action_view/helpers/csp_helper.rb +26 -0
- data/lib/action_view/helpers/csrf_helper.rb +35 -0
- data/lib/action_view/helpers/date_helper.rb +1266 -0
- data/lib/action_view/helpers/debug_helper.rb +38 -0
- data/lib/action_view/helpers/form_helper.rb +2765 -0
- data/lib/action_view/helpers/form_options_helper.rb +927 -0
- data/lib/action_view/helpers/form_tag_helper.rb +1088 -0
- data/lib/action_view/helpers/javascript_helper.rb +96 -0
- data/lib/action_view/helpers/number_helper.rb +165 -0
- data/lib/action_view/helpers/output_safety_helper.rb +70 -0
- data/lib/action_view/helpers/rendering_helper.rb +218 -0
- data/lib/action_view/helpers/sanitize_helper.rb +201 -0
- data/lib/action_view/helpers/tag_helper.rb +621 -0
- data/lib/action_view/helpers/tags/base.rb +138 -0
- data/lib/action_view/helpers/tags/check_box.rb +65 -0
- data/lib/action_view/helpers/tags/checkable.rb +18 -0
- data/lib/action_view/helpers/tags/collection_check_boxes.rb +37 -0
- data/lib/action_view/helpers/tags/collection_helpers.rb +118 -0
- data/lib/action_view/helpers/tags/collection_radio_buttons.rb +31 -0
- data/lib/action_view/helpers/tags/collection_select.rb +33 -0
- data/lib/action_view/helpers/tags/color_field.rb +26 -0
- data/lib/action_view/helpers/tags/date_field.rb +14 -0
- data/lib/action_view/helpers/tags/date_select.rb +75 -0
- data/lib/action_view/helpers/tags/datetime_field.rb +39 -0
- data/lib/action_view/helpers/tags/datetime_local_field.rb +29 -0
- data/lib/action_view/helpers/tags/datetime_select.rb +10 -0
- data/lib/action_view/helpers/tags/email_field.rb +10 -0
- data/lib/action_view/helpers/tags/file_field.rb +26 -0
- data/lib/action_view/helpers/tags/grouped_collection_select.rb +34 -0
- data/lib/action_view/helpers/tags/hidden_field.rb +14 -0
- data/lib/action_view/helpers/tags/label.rb +84 -0
- data/lib/action_view/helpers/tags/month_field.rb +14 -0
- data/lib/action_view/helpers/tags/number_field.rb +20 -0
- data/lib/action_view/helpers/tags/password_field.rb +14 -0
- data/lib/action_view/helpers/tags/placeholderable.rb +24 -0
- data/lib/action_view/helpers/tags/radio_button.rb +32 -0
- data/lib/action_view/helpers/tags/range_field.rb +10 -0
- data/lib/action_view/helpers/tags/search_field.rb +27 -0
- data/lib/action_view/helpers/tags/select.rb +45 -0
- data/lib/action_view/helpers/tags/select_renderer.rb +56 -0
- data/lib/action_view/helpers/tags/tel_field.rb +10 -0
- data/lib/action_view/helpers/tags/text_area.rb +24 -0
- data/lib/action_view/helpers/tags/text_field.rb +33 -0
- data/lib/action_view/helpers/tags/time_field.rb +23 -0
- data/lib/action_view/helpers/tags/time_select.rb +10 -0
- data/lib/action_view/helpers/tags/time_zone_select.rb +25 -0
- data/lib/action_view/helpers/tags/translator.rb +39 -0
- data/lib/action_view/helpers/tags/url_field.rb +10 -0
- data/lib/action_view/helpers/tags/week_field.rb +14 -0
- data/lib/action_view/helpers/tags/weekday_select.rb +31 -0
- data/lib/action_view/helpers/tags.rb +47 -0
- data/lib/action_view/helpers/text_helper.rb +568 -0
- data/lib/action_view/helpers/translation_helper.rb +161 -0
- data/lib/action_view/helpers/url_helper.rb +812 -0
- data/lib/action_view/helpers.rb +68 -0
- data/lib/action_view/layouts.rb +434 -0
- data/lib/action_view/locale/en.yml +56 -0
- data/lib/action_view/log_subscriber.rb +132 -0
- data/lib/action_view/lookup_context.rb +299 -0
- data/lib/action_view/model_naming.rb +14 -0
- data/lib/action_view/path_registry.rb +57 -0
- data/lib/action_view/path_set.rb +84 -0
- data/lib/action_view/railtie.rb +132 -0
- data/lib/action_view/record_identifier.rb +118 -0
- data/lib/action_view/render_parser/prism_render_parser.rb +139 -0
- data/lib/action_view/render_parser/ripper_render_parser.rb +350 -0
- data/lib/action_view/render_parser.rb +40 -0
- data/lib/action_view/renderer/abstract_renderer.rb +186 -0
- data/lib/action_view/renderer/collection_renderer.rb +204 -0
- data/lib/action_view/renderer/object_renderer.rb +34 -0
- data/lib/action_view/renderer/partial_renderer/collection_caching.rb +120 -0
- data/lib/action_view/renderer/partial_renderer.rb +267 -0
- data/lib/action_view/renderer/renderer.rb +107 -0
- data/lib/action_view/renderer/streaming_template_renderer.rb +107 -0
- data/lib/action_view/renderer/template_renderer.rb +115 -0
- data/lib/action_view/rendering.rb +190 -0
- data/lib/action_view/routing_url_for.rb +149 -0
- data/lib/action_view/tasks/cache_digests.rake +25 -0
- data/lib/action_view/template/error.rb +264 -0
- data/lib/action_view/template/handlers/builder.rb +25 -0
- data/lib/action_view/template/handlers/erb/erubi.rb +85 -0
- data/lib/action_view/template/handlers/erb.rb +157 -0
- data/lib/action_view/template/handlers/html.rb +11 -0
- data/lib/action_view/template/handlers/raw.rb +11 -0
- data/lib/action_view/template/handlers.rb +66 -0
- data/lib/action_view/template/html.rb +33 -0
- data/lib/action_view/template/inline.rb +22 -0
- data/lib/action_view/template/raw_file.rb +25 -0
- data/lib/action_view/template/renderable.rb +30 -0
- data/lib/action_view/template/resolver.rb +212 -0
- data/lib/action_view/template/sources/file.rb +17 -0
- data/lib/action_view/template/sources.rb +13 -0
- data/lib/action_view/template/text.rb +32 -0
- data/lib/action_view/template/types.rb +50 -0
- data/lib/action_view/template.rb +580 -0
- data/lib/action_view/template_details.rb +66 -0
- data/lib/action_view/template_path.rb +66 -0
- data/lib/action_view/test_case.rb +449 -0
- data/lib/action_view/testing/resolvers.rb +44 -0
- data/lib/action_view/unbound_template.rb +67 -0
- data/lib/action_view/version.rb +10 -0
- data/lib/action_view/view_paths.rb +117 -0
- data/lib/action_view.rb +104 -0
- metadata +275 -0
data/lib/action_view.rb
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
#--
|
4
|
+
# Copyright (c) David Heinemeier Hansson
|
5
|
+
#
|
6
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
7
|
+
# a copy of this software and associated documentation files (the
|
8
|
+
# "Software"), to deal in the Software without restriction, including
|
9
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
10
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
11
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
12
|
+
# the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be
|
15
|
+
# included in all copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
18
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
19
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
20
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
21
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
22
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
23
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
24
|
+
#++
|
25
|
+
|
26
|
+
require "active_support"
|
27
|
+
require "active_support/rails"
|
28
|
+
require "action_view/version"
|
29
|
+
require "action_view/deprecator"
|
30
|
+
|
31
|
+
# :include: ../README.rdoc
|
32
|
+
module ActionView
|
33
|
+
extend ActiveSupport::Autoload
|
34
|
+
|
35
|
+
ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*'
|
36
|
+
|
37
|
+
eager_autoload do
|
38
|
+
autoload :Base
|
39
|
+
autoload :Context
|
40
|
+
autoload :Digestor
|
41
|
+
autoload :Helpers
|
42
|
+
autoload :LookupContext
|
43
|
+
autoload :Layouts
|
44
|
+
autoload :PathRegistry
|
45
|
+
autoload :PathSet
|
46
|
+
autoload :RecordIdentifier
|
47
|
+
autoload :Rendering
|
48
|
+
autoload :RoutingUrlFor
|
49
|
+
autoload :Template
|
50
|
+
autoload :TemplateDetails
|
51
|
+
autoload :TemplatePath
|
52
|
+
autoload :UnboundTemplate
|
53
|
+
autoload :ViewPaths
|
54
|
+
|
55
|
+
autoload_under "renderer" do
|
56
|
+
autoload :Renderer
|
57
|
+
autoload :AbstractRenderer
|
58
|
+
autoload :PartialRenderer
|
59
|
+
autoload :CollectionRenderer
|
60
|
+
autoload :ObjectRenderer
|
61
|
+
autoload :TemplateRenderer
|
62
|
+
autoload :StreamingTemplateRenderer
|
63
|
+
end
|
64
|
+
|
65
|
+
autoload_at "action_view/template/resolver" do
|
66
|
+
autoload :Resolver
|
67
|
+
autoload :FileSystemResolver
|
68
|
+
end
|
69
|
+
|
70
|
+
autoload_at "action_view/buffers" do
|
71
|
+
autoload :OutputBuffer
|
72
|
+
autoload :StreamingBuffer
|
73
|
+
end
|
74
|
+
|
75
|
+
autoload_at "action_view/flows" do
|
76
|
+
autoload :OutputFlow
|
77
|
+
autoload :StreamingFlow
|
78
|
+
end
|
79
|
+
|
80
|
+
autoload_at "action_view/template/error" do
|
81
|
+
autoload :MissingTemplate
|
82
|
+
autoload :ActionViewError
|
83
|
+
autoload :EncodingError
|
84
|
+
autoload :TemplateError
|
85
|
+
autoload :SyntaxErrorInTemplate
|
86
|
+
autoload :WrongEncodingError
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
autoload :CacheExpiry
|
91
|
+
autoload :TestCase
|
92
|
+
|
93
|
+
def self.eager_load!
|
94
|
+
super
|
95
|
+
ActionView::Helpers.eager_load!
|
96
|
+
ActionView::Template.eager_load!
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
require "active_support/core_ext/string/output_safety"
|
101
|
+
|
102
|
+
ActiveSupport.on_load(:i18n) do
|
103
|
+
I18n.load_path << File.expand_path("action_view/locale/en.yml", __dir__)
|
104
|
+
end
|
metadata
ADDED
@@ -0,0 +1,275 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omg-actionview
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 8.0.0.alpha1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- David Heinemeier Hansson
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-09-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: omg-activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 8.0.0.alpha1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 8.0.0.alpha1
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: builder
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: erubi
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.11'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.11'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rails-html-sanitizer
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.6'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.6'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rails-dom-testing
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.2'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.2'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: omg-actionpack
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 8.0.0.alpha1
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 8.0.0.alpha1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: omg-activemodel
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 8.0.0.alpha1
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 8.0.0.alpha1
|
111
|
+
description: Simple, battle-tested conventions and helpers for building web pages.
|
112
|
+
email: david@loudthinking.com
|
113
|
+
executables: []
|
114
|
+
extensions: []
|
115
|
+
extra_rdoc_files: []
|
116
|
+
files:
|
117
|
+
- CHANGELOG.md
|
118
|
+
- MIT-LICENSE
|
119
|
+
- README.rdoc
|
120
|
+
- app/assets/javascripts/rails-ujs.esm.js
|
121
|
+
- app/assets/javascripts/rails-ujs.js
|
122
|
+
- lib/action_view.rb
|
123
|
+
- lib/action_view/base.rb
|
124
|
+
- lib/action_view/buffers.rb
|
125
|
+
- lib/action_view/cache_expiry.rb
|
126
|
+
- lib/action_view/context.rb
|
127
|
+
- lib/action_view/dependency_tracker.rb
|
128
|
+
- lib/action_view/dependency_tracker/erb_tracker.rb
|
129
|
+
- lib/action_view/dependency_tracker/ruby_tracker.rb
|
130
|
+
- lib/action_view/dependency_tracker/wildcard_resolver.rb
|
131
|
+
- lib/action_view/deprecator.rb
|
132
|
+
- lib/action_view/digestor.rb
|
133
|
+
- lib/action_view/flows.rb
|
134
|
+
- lib/action_view/gem_version.rb
|
135
|
+
- lib/action_view/helpers.rb
|
136
|
+
- lib/action_view/helpers/active_model_helper.rb
|
137
|
+
- lib/action_view/helpers/asset_tag_helper.rb
|
138
|
+
- lib/action_view/helpers/asset_url_helper.rb
|
139
|
+
- lib/action_view/helpers/atom_feed_helper.rb
|
140
|
+
- lib/action_view/helpers/cache_helper.rb
|
141
|
+
- lib/action_view/helpers/capture_helper.rb
|
142
|
+
- lib/action_view/helpers/content_exfiltration_prevention_helper.rb
|
143
|
+
- lib/action_view/helpers/controller_helper.rb
|
144
|
+
- lib/action_view/helpers/csp_helper.rb
|
145
|
+
- lib/action_view/helpers/csrf_helper.rb
|
146
|
+
- lib/action_view/helpers/date_helper.rb
|
147
|
+
- lib/action_view/helpers/debug_helper.rb
|
148
|
+
- lib/action_view/helpers/form_helper.rb
|
149
|
+
- lib/action_view/helpers/form_options_helper.rb
|
150
|
+
- lib/action_view/helpers/form_tag_helper.rb
|
151
|
+
- lib/action_view/helpers/javascript_helper.rb
|
152
|
+
- lib/action_view/helpers/number_helper.rb
|
153
|
+
- lib/action_view/helpers/output_safety_helper.rb
|
154
|
+
- lib/action_view/helpers/rendering_helper.rb
|
155
|
+
- lib/action_view/helpers/sanitize_helper.rb
|
156
|
+
- lib/action_view/helpers/tag_helper.rb
|
157
|
+
- lib/action_view/helpers/tags.rb
|
158
|
+
- lib/action_view/helpers/tags/base.rb
|
159
|
+
- lib/action_view/helpers/tags/check_box.rb
|
160
|
+
- lib/action_view/helpers/tags/checkable.rb
|
161
|
+
- lib/action_view/helpers/tags/collection_check_boxes.rb
|
162
|
+
- lib/action_view/helpers/tags/collection_helpers.rb
|
163
|
+
- lib/action_view/helpers/tags/collection_radio_buttons.rb
|
164
|
+
- lib/action_view/helpers/tags/collection_select.rb
|
165
|
+
- lib/action_view/helpers/tags/color_field.rb
|
166
|
+
- lib/action_view/helpers/tags/date_field.rb
|
167
|
+
- lib/action_view/helpers/tags/date_select.rb
|
168
|
+
- lib/action_view/helpers/tags/datetime_field.rb
|
169
|
+
- lib/action_view/helpers/tags/datetime_local_field.rb
|
170
|
+
- lib/action_view/helpers/tags/datetime_select.rb
|
171
|
+
- lib/action_view/helpers/tags/email_field.rb
|
172
|
+
- lib/action_view/helpers/tags/file_field.rb
|
173
|
+
- lib/action_view/helpers/tags/grouped_collection_select.rb
|
174
|
+
- lib/action_view/helpers/tags/hidden_field.rb
|
175
|
+
- lib/action_view/helpers/tags/label.rb
|
176
|
+
- lib/action_view/helpers/tags/month_field.rb
|
177
|
+
- lib/action_view/helpers/tags/number_field.rb
|
178
|
+
- lib/action_view/helpers/tags/password_field.rb
|
179
|
+
- lib/action_view/helpers/tags/placeholderable.rb
|
180
|
+
- lib/action_view/helpers/tags/radio_button.rb
|
181
|
+
- lib/action_view/helpers/tags/range_field.rb
|
182
|
+
- lib/action_view/helpers/tags/search_field.rb
|
183
|
+
- lib/action_view/helpers/tags/select.rb
|
184
|
+
- lib/action_view/helpers/tags/select_renderer.rb
|
185
|
+
- lib/action_view/helpers/tags/tel_field.rb
|
186
|
+
- lib/action_view/helpers/tags/text_area.rb
|
187
|
+
- lib/action_view/helpers/tags/text_field.rb
|
188
|
+
- lib/action_view/helpers/tags/time_field.rb
|
189
|
+
- lib/action_view/helpers/tags/time_select.rb
|
190
|
+
- lib/action_view/helpers/tags/time_zone_select.rb
|
191
|
+
- lib/action_view/helpers/tags/translator.rb
|
192
|
+
- lib/action_view/helpers/tags/url_field.rb
|
193
|
+
- lib/action_view/helpers/tags/week_field.rb
|
194
|
+
- lib/action_view/helpers/tags/weekday_select.rb
|
195
|
+
- lib/action_view/helpers/text_helper.rb
|
196
|
+
- lib/action_view/helpers/translation_helper.rb
|
197
|
+
- lib/action_view/helpers/url_helper.rb
|
198
|
+
- lib/action_view/layouts.rb
|
199
|
+
- lib/action_view/locale/en.yml
|
200
|
+
- lib/action_view/log_subscriber.rb
|
201
|
+
- lib/action_view/lookup_context.rb
|
202
|
+
- lib/action_view/model_naming.rb
|
203
|
+
- lib/action_view/path_registry.rb
|
204
|
+
- lib/action_view/path_set.rb
|
205
|
+
- lib/action_view/railtie.rb
|
206
|
+
- lib/action_view/record_identifier.rb
|
207
|
+
- lib/action_view/render_parser.rb
|
208
|
+
- lib/action_view/render_parser/prism_render_parser.rb
|
209
|
+
- lib/action_view/render_parser/ripper_render_parser.rb
|
210
|
+
- lib/action_view/renderer/abstract_renderer.rb
|
211
|
+
- lib/action_view/renderer/collection_renderer.rb
|
212
|
+
- lib/action_view/renderer/object_renderer.rb
|
213
|
+
- lib/action_view/renderer/partial_renderer.rb
|
214
|
+
- lib/action_view/renderer/partial_renderer/collection_caching.rb
|
215
|
+
- lib/action_view/renderer/renderer.rb
|
216
|
+
- lib/action_view/renderer/streaming_template_renderer.rb
|
217
|
+
- lib/action_view/renderer/template_renderer.rb
|
218
|
+
- lib/action_view/rendering.rb
|
219
|
+
- lib/action_view/routing_url_for.rb
|
220
|
+
- lib/action_view/tasks/cache_digests.rake
|
221
|
+
- lib/action_view/template.rb
|
222
|
+
- lib/action_view/template/error.rb
|
223
|
+
- lib/action_view/template/handlers.rb
|
224
|
+
- lib/action_view/template/handlers/builder.rb
|
225
|
+
- lib/action_view/template/handlers/erb.rb
|
226
|
+
- lib/action_view/template/handlers/erb/erubi.rb
|
227
|
+
- lib/action_view/template/handlers/html.rb
|
228
|
+
- lib/action_view/template/handlers/raw.rb
|
229
|
+
- lib/action_view/template/html.rb
|
230
|
+
- lib/action_view/template/inline.rb
|
231
|
+
- lib/action_view/template/raw_file.rb
|
232
|
+
- lib/action_view/template/renderable.rb
|
233
|
+
- lib/action_view/template/resolver.rb
|
234
|
+
- lib/action_view/template/sources.rb
|
235
|
+
- lib/action_view/template/sources/file.rb
|
236
|
+
- lib/action_view/template/text.rb
|
237
|
+
- lib/action_view/template/types.rb
|
238
|
+
- lib/action_view/template_details.rb
|
239
|
+
- lib/action_view/template_path.rb
|
240
|
+
- lib/action_view/test_case.rb
|
241
|
+
- lib/action_view/testing/resolvers.rb
|
242
|
+
- lib/action_view/unbound_template.rb
|
243
|
+
- lib/action_view/version.rb
|
244
|
+
- lib/action_view/view_paths.rb
|
245
|
+
homepage: https://rubyonrails.org
|
246
|
+
licenses:
|
247
|
+
- MIT
|
248
|
+
metadata:
|
249
|
+
bug_tracker_uri: https://github.com/rails/rails/issues
|
250
|
+
changelog_uri: https://github.com/rails/rails/blob/v8.0.0.alpha1/actionview/CHANGELOG.md
|
251
|
+
documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha1/
|
252
|
+
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
253
|
+
source_code_uri: https://github.com/rails/rails/tree/v8.0.0.alpha1/actionview
|
254
|
+
rubygems_mfa_required: 'true'
|
255
|
+
post_install_message:
|
256
|
+
rdoc_options: []
|
257
|
+
require_paths:
|
258
|
+
- lib
|
259
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
260
|
+
requirements:
|
261
|
+
- - ">="
|
262
|
+
- !ruby/object:Gem::Version
|
263
|
+
version: 3.1.0
|
264
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
265
|
+
requirements:
|
266
|
+
- - ">="
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
version: '0'
|
269
|
+
requirements:
|
270
|
+
- none
|
271
|
+
rubygems_version: 3.5.11
|
272
|
+
signing_key:
|
273
|
+
specification_version: 4
|
274
|
+
summary: Rendering framework putting the V in MVC (part of Rails).
|
275
|
+
test_files: []
|