sitepress-rails 4.0.2 → 4.0.3

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: d982983be98080c0cfe1f61ab6664347e9ae387335222f751c04138b5cc3ba25
4
- data.tar.gz: 63bd4f4ba8d058e07c0bceb90919180f41a5248c7ec9d318a1737a38b93f2b24
3
+ metadata.gz: dad6e2ce4cfe804d6df8e986eb8f5c6f221a2f5abb5f1bfd6f97aec20b1599ac
4
+ data.tar.gz: 43d4f557e208f5ed8c55f1395ec71f463726ff682a9a90067867d0c5781063bd
5
5
  SHA512:
6
- metadata.gz: a19381871e14383c5b65d87a3cec2ea99564b23fb148b1c4c0a8c5b11552f996804dab72b5203a88581c06a350a3d187a9cc4e696e280f87d1049034bae52796
7
- data.tar.gz: 5fce88a50329238576a40cc21c796f3c873947be86d3e1ba536265075a0b9adb099fa0723dbff0efa5aa28c462a183e2e54f9f12b582ab342ad89a6400338be0
6
+ metadata.gz: 96ac7a7c0dc5f660661e9e9c354c0544b87e762f2a5e648eef3f76d15fd3fad6b74575d02595d020906491aeca72a2bc50da209d2a658d9c6190f4ac0a9737e3
7
+ data.tar.gz: 791fef64e8c12d4935416c1cecc88b02449517148f99a025d2b27466011d3b8d1984b8262989d4cc1c87c77d43ab2dd7783750c39ca252c2811ed87976b59f7d
@@ -45,13 +45,21 @@ module Sitepress
45
45
  # Configure Sitepress with Rails settings.
46
46
  initializer :configure_sitepress do |app|
47
47
  sitepress_configuration.parent_engine = app
48
- # Reloads entire site between requests for development environments
49
- sitepress_configuration.cache_resources = app.config.cache_classes
50
- end
48
+ # Reloads entire site between requests for development environments.
49
+ sitepress_configuration.cache_resources = if app.config.respond_to? :enable_reloading?
50
+ # Rails 7.1 changed the name of this setting to enable_reloading, so check if that exist and use it.
51
+ app.config.enable_reloading?
52
+ else
53
+ # Rails 7.0.x and lower all use this method to check if reloading is enabled.
54
+ app.config.cache_classes
55
+ end
51
56
 
52
- config.after_initialize do
53
- # Set the templates extensions (e.g. erb, haml) so that Sitepress can parse paths.
54
- Sitepress::Path.handler_extensions = ActionView::Template::Handlers.extensions
57
+ # Setup Sitepress to handle Rails extensions.
58
+ ActiveSupport.on_load(:action_view) do
59
+ ActiveSupport.on_load(:after_initialize) do
60
+ Sitepress::Path.handler_extensions = ActionView::Template::Handlers.extensions
61
+ end
62
+ end
55
63
  end
56
64
 
57
65
  private
@@ -8,11 +8,11 @@ module ActionDispatch::Routing
8
8
  ROUTE_GLOB_KEY = "/*resource_path".freeze
9
9
 
10
10
  # Hook up all the Sitepress pages
11
- def sitepress_pages(controller: DEFAULT_CONTROLLER, action: DEFAULT_ACTION, root: false, constraints: Sitepress::RouteConstraint.new)
11
+ def sitepress_pages(controller: DEFAULT_CONTROLLER, action: DEFAULT_ACTION, root: false, constraints: Sitepress::RouteConstraint.new, as: :page)
12
12
  get ROUTE_GLOB_KEY,
13
13
  controller: controller,
14
14
  action: action,
15
- as: :page,
15
+ as: as,
16
16
  format: false,
17
17
  constraints: constraints
18
18
 
@@ -18,14 +18,13 @@ module Sitepress
18
18
  rescue_from Sitepress::ResourceNotFound, with: :resource_not_found
19
19
  helper Sitepress::Engine.helpers
20
20
  helper_method :current_page, :site, :page_rendition
21
- before_action :append_relative_partial_path, only: :show
22
- around_action :ensure_site_reload, only: :show
21
+ around_action :ensure_site_reload
23
22
  end
24
23
 
25
24
  # Public method that is primarily called by Rails to display the page. This should
26
25
  # be hooked up to the Rails routes file.
27
26
  def show
28
- render_resource current_resource
27
+ render_resource requested_resource
29
28
  end
30
29
 
31
30
  protected
@@ -35,6 +34,9 @@ module Sitepress
35
34
  # file and serve it up.
36
35
  def render_resource(resource)
37
36
  if resource.renderable?
37
+ # Set this as our "top-level" resource. We might change it again in the pre-render
38
+ # method to deal with rendering resources inside of resources.
39
+ @current_resource = resource
38
40
  render_resource_with_handler resource
39
41
  else
40
42
  send_binary_resource resource
@@ -54,7 +56,10 @@ module Sitepress
54
56
  # contained in a way that the end user can override, we coupled the resource, source
55
57
  # and output within a `Rendition` object so that it may be processed via hooks.
56
58
  def render_resource_with_handler(resource)
57
- rendition = page_rendition(resource, layout: controller_layout)
59
+ # Add the resource path to the view path so that partials can be rendered
60
+ append_relative_partial_path resource
61
+
62
+ rendition = page_rendition(resource, layout: controller_layout(resource))
58
63
 
59
64
  # Fire a callback in the controller in case anybody needs it.
60
65
  process_rendition rendition
@@ -65,9 +70,16 @@ module Sitepress
65
70
 
66
71
  # This is where the actual rendering happens for the page source in Rails.
67
72
  def pre_render(rendition)
68
- rendition.output = render_to_string inline: rendition.source,
69
- type: rendition.handler,
70
- layout: rendition.layout
73
+ original_resource = @current_resource
74
+ begin
75
+ # This sets the `current_page` and `current_resource` variable equal to the given resource.
76
+ @current_resource = rendition.resource
77
+ rendition.output = render_to_string inline: rendition.source,
78
+ type: rendition.handler,
79
+ layout: rendition.layout
80
+ ensure
81
+ @current_resource = original_resource
82
+ end
71
83
  end
72
84
 
73
85
  # This is to be used by end users if they need to do any post-processing on the rendering page.
@@ -84,9 +96,8 @@ module Sitepress
84
96
  end
85
97
 
86
98
  # A reference to the current resource that's being requested.
87
- def current_resource
88
- @current_resource ||= find_resource
89
- end
99
+ attr_reader :current_resource
100
+
90
101
  # In templates resources are more naturally thought of as pages, so we call it `current_page` from
91
102
  # there and from the controller.
92
103
  alias :current_page :current_resource
@@ -108,8 +119,8 @@ module Sitepress
108
119
  private
109
120
  # This makes it possible to render partials from the current resource with relative
110
121
  # paths. Without this the paths would have to be absolute.
111
- def append_relative_partial_path
112
- append_view_path current_resource.asset.path.dirname
122
+ def append_relative_partial_path(resource)
123
+ append_view_path resource.asset.path.dirname
113
124
  end
114
125
 
115
126
  def send_binary_resource(resource)
@@ -132,7 +143,7 @@ module Sitepress
132
143
 
133
144
  # Default finder of the resource for the current controller context. If the :resource_path
134
145
  # isn't present, then its probably the root path so grab that.
135
- def find_resource
146
+ def requested_resource
136
147
  get resource_request_path
137
148
  end
138
149
 
@@ -144,13 +155,13 @@ module Sitepress
144
155
  # Returns the current layout for the inline Sitepress renderer. This is
145
156
  # exposed via some really convoluted private methods inside of the various
146
157
  # versions of Rails, so I try my best to hack out the path to the layout below.
147
- def controller_layout
158
+ def controller_layout(resource)
148
159
  private_layout_method = self.method(:_layout)
149
160
  layout =
150
161
  if Rails.version >= "6"
151
- private_layout_method.call lookup_context, current_resource_rails_formats
162
+ private_layout_method.call lookup_context, resource_rails_formats(resource)
152
163
  elsif Rails.version >= "5"
153
- private_layout_method.call current_resource_rails_formats
164
+ private_layout_method.call resource_rails_formats(resource)
154
165
  else
155
166
  private_layout_method.call
156
167
  end
@@ -170,8 +181,8 @@ module Sitepress
170
181
  # method returns the intersection of the formats Rails supports from Mime::Types
171
182
  # and the current page's node formats. If nothing intersects, HTML is returned
172
183
  # as a default.
173
- def current_resource_rails_formats
174
- node_formats = current_resource.node.formats
184
+ def resource_rails_formats(resource)
185
+ node_formats = resource.node.formats
175
186
  supported_formats = node_formats & Mime::EXTENSION_LOOKUP.keys
176
187
 
177
188
  if supported_formats.empty?
@@ -19309,3 +19309,457 @@ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepre
19309
19309
  Rendering text template
19310
19310
  Rendered text template (Duration: 0.0ms | Allocations: 1)
19311
19311
  Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 705)
19312
+ Processing by Sitepress::SiteController#show as HTML
19313
+ Parameters: {"resource_path"=>"time"}
19314
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19315
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19316
+ Rendering inline template within layouts/sitepress_test_layout
19317
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 111)
19318
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 78)
19319
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.9ms | Allocations: 928)
19320
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.1ms | Allocations: 1122)
19321
+ Rendering text template
19322
+ Rendered text template (Duration: 0.0ms | Allocations: 3)
19323
+ Completed 200 OK in 5ms (Views: 0.2ms | Allocations: 5229)
19324
+ Processing by Sitepress::SiteController#show as HTML
19325
+ Parameters: {"resource_path"=>"all_pages"}
19326
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
19327
+ Rendering layout layouts/application.html.erb
19328
+ Rendering inline template within layouts/application
19329
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 244)
19330
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 402)
19331
+ Rendering text template
19332
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19333
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 815)
19334
+ Processing by Sitepress::SiteController#show as HTML
19335
+ Parameters: {"resource_path"=>"/all_pages"}
19336
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
19337
+ Rendering layout layouts/application.html.erb
19338
+ Rendering inline template within layouts/application
19339
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 230)
19340
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
19341
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 313)
19342
+ Rendering text template
19343
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19344
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 986)
19345
+ Processing by Sitepress::SiteController#show as HTML
19346
+ Parameters: {"resource_path"=>"/non-existent"}
19347
+ Completed 404 Not Found in 0ms (Allocations: 601)
19348
+ Processing by Sitepress::SiteController#show as HTML
19349
+ Parameters: {"resource_path"=>"/hi"}
19350
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19351
+ Rendering layout layouts/application.html.erb
19352
+ Rendering inline template within layouts/application
19353
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 58)
19354
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 98)
19355
+ Rendering text template
19356
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19357
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 857)
19358
+ Processing by Sitepress::SiteController#show as HTML
19359
+ Parameters: {"resource_path"=>"/hi"}
19360
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19361
+ Rendering layout layouts/application.html.erb
19362
+ Rendering inline template within layouts/application
19363
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19364
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19365
+ Rendering text template
19366
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19367
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 849)
19368
+ Processing by Sitepress::SiteController#show as HTML
19369
+ Parameters: {"resource_path"=>"/hi"}
19370
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19371
+ Rendering layout layouts/application.html.erb
19372
+ Rendering inline template within layouts/application
19373
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19374
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19375
+ Rendering text template
19376
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19377
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 849)
19378
+ Processing by Sitepress::SiteController#show as HTML
19379
+ Parameters: {"resource_path"=>"/hi"}
19380
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19381
+ Rendering layout layouts/application.html.erb
19382
+ Rendering inline template within layouts/application
19383
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19384
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19385
+ Rendering text template
19386
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19387
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 849)
19388
+ Processing by Sitepress::SiteController#show as HTML
19389
+ Parameters: {"resource_path"=>"/time"}
19390
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19391
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19392
+ Rendering inline template within layouts/sitepress_test_layout
19393
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19394
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19395
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19396
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19397
+ Rendering text template
19398
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19399
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19400
+ Processing by Sitepress::SiteController#show as HTML
19401
+ Parameters: {"resource_path"=>"/time"}
19402
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19403
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19404
+ Rendering inline template within layouts/sitepress_test_layout
19405
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19406
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19407
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19408
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19409
+ Rendering text template
19410
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19411
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19412
+ Processing by Sitepress::SiteController#show as HTML
19413
+ Parameters: {"resource_path"=>"/time"}
19414
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19415
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19416
+ Rendering inline template within layouts/sitepress_test_layout
19417
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19418
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19419
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19420
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19421
+ Rendering text template
19422
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19423
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1105)
19424
+ Processing by Sitepress::SiteController#show as HTML
19425
+ Parameters: {"resource_path"=>"/time"}
19426
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19427
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19428
+ Rendering inline template within layouts/sitepress_test_layout
19429
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19430
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19431
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19432
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19433
+ Rendering text template
19434
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19435
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19436
+ Processing by Sitepress::SiteController#show as HTML
19437
+ Parameters: {"resource_path"=>"/time"}
19438
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19439
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19440
+ Rendering inline template within layouts/sitepress_test_layout
19441
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19442
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19443
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19444
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19445
+ Rendering text template
19446
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19447
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1105)
19448
+ Processing by Sitepress::SiteController#show as HTML
19449
+ Parameters: {"resource_path"=>"/time"}
19450
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19451
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19452
+ Rendering inline template within layouts/sitepress_test_layout
19453
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19454
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19455
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19456
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19457
+ Rendering text template
19458
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19459
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19460
+ Processing by Sitepress::SiteController#show as HTML
19461
+ Parameters: {"resource_path"=>"time"}
19462
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19463
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19464
+ Rendering inline template within layouts/sitepress_test_layout
19465
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 111)
19466
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 78)
19467
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 928)
19468
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.8ms | Allocations: 1122)
19469
+ Rendering text template
19470
+ Rendered text template (Duration: 0.0ms | Allocations: 3)
19471
+ Completed 200 OK in 4ms (Views: 0.2ms | Allocations: 5227)
19472
+ Processing by Sitepress::SiteController#show as HTML
19473
+ Parameters: {"resource_path"=>"all_pages"}
19474
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
19475
+ Rendering layout layouts/application.html.erb
19476
+ Rendering inline template within layouts/application
19477
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 244)
19478
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 402)
19479
+ Rendering text template
19480
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19481
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 815)
19482
+ Processing by Sitepress::SiteController#show as HTML
19483
+ Parameters: {"resource_path"=>"/all_pages"}
19484
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
19485
+ Rendering layout layouts/application.html.erb
19486
+ Rendering inline template within layouts/application
19487
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 230)
19488
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
19489
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 313)
19490
+ Rendering text template
19491
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19492
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 993)
19493
+ Processing by Sitepress::SiteController#show as HTML
19494
+ Parameters: {"resource_path"=>"/hi"}
19495
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19496
+ Rendering layout layouts/application.html.erb
19497
+ Rendering inline template within layouts/application
19498
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 58)
19499
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 98)
19500
+ Rendering text template
19501
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19502
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 857)
19503
+ Processing by Sitepress::SiteController#show as HTML
19504
+ Parameters: {"resource_path"=>"/hi"}
19505
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19506
+ Rendering layout layouts/application.html.erb
19507
+ Rendering inline template within layouts/application
19508
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19509
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19510
+ Rendering text template
19511
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19512
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 849)
19513
+ Processing by Sitepress::SiteController#show as HTML
19514
+ Parameters: {"resource_path"=>"/hi"}
19515
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19516
+ Rendering layout layouts/application.html.erb
19517
+ Rendering inline template within layouts/application
19518
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 53)
19519
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19520
+ Rendering text template
19521
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19522
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 849)
19523
+ Processing by Sitepress::SiteController#show as HTML
19524
+ Parameters: {"resource_path"=>"/hi"}
19525
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19526
+ Rendering layout layouts/application.html.erb
19527
+ Rendering inline template within layouts/application
19528
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19529
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19530
+ Rendering text template
19531
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19532
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 849)
19533
+ Processing by Sitepress::SiteController#show as HTML
19534
+ Parameters: {"resource_path"=>"/time"}
19535
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19536
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19537
+ Rendering inline template within layouts/sitepress_test_layout
19538
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19539
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19540
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19541
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19542
+ Rendering text template
19543
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19544
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19545
+ Processing by Sitepress::SiteController#show as HTML
19546
+ Parameters: {"resource_path"=>"/time"}
19547
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19548
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19549
+ Rendering inline template within layouts/sitepress_test_layout
19550
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19551
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19552
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19553
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19554
+ Rendering text template
19555
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19556
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19557
+ Processing by Sitepress::SiteController#show as HTML
19558
+ Parameters: {"resource_path"=>"/time"}
19559
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19560
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19561
+ Rendering inline template within layouts/sitepress_test_layout
19562
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19563
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19564
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19565
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19566
+ Rendering text template
19567
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19568
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19569
+ Processing by Sitepress::SiteController#show as HTML
19570
+ Parameters: {"resource_path"=>"/time"}
19571
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19572
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19573
+ Rendering inline template within layouts/sitepress_test_layout
19574
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19575
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19576
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19577
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19578
+ Rendering text template
19579
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19580
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19581
+ Processing by Sitepress::SiteController#show as HTML
19582
+ Parameters: {"resource_path"=>"/time"}
19583
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19584
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19585
+ Rendering inline template within layouts/sitepress_test_layout
19586
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19587
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19588
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19589
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19590
+ Rendering text template
19591
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19592
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19593
+ Processing by Sitepress::SiteController#show as HTML
19594
+ Parameters: {"resource_path"=>"/time"}
19595
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19596
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19597
+ Rendering inline template within layouts/sitepress_test_layout
19598
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19599
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19600
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19601
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19602
+ Rendering text template
19603
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19604
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19605
+ Processing by Sitepress::SiteController#show as HTML
19606
+ Parameters: {"resource_path"=>"/non-existent"}
19607
+ Completed 404 Not Found in 0ms (Allocations: 601)
19608
+ Processing by Sitepress::SiteController#show as HTML
19609
+ Parameters: {"resource_path"=>"/all_pages"}
19610
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
19611
+ Rendering layout layouts/application.html.erb
19612
+ Rendering inline template within layouts/application
19613
+ Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 554)
19614
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
19615
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 673)
19616
+ Rendering text template
19617
+ Rendered text template (Duration: 0.0ms | Allocations: 3)
19618
+ Completed 200 OK in 4ms (Views: 0.2ms | Allocations: 4815)
19619
+ Processing by Sitepress::SiteController#show as HTML
19620
+ Parameters: {"resource_path"=>"/time"}
19621
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19622
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19623
+ Rendering inline template within layouts/sitepress_test_layout
19624
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 93)
19625
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 78)
19626
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 625)
19627
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 803)
19628
+ Rendering text template
19629
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19630
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1825)
19631
+ Processing by Sitepress::SiteController#show as HTML
19632
+ Parameters: {"resource_path"=>"/time"}
19633
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19634
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19635
+ Rendering inline template within layouts/sitepress_test_layout
19636
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19637
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19638
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19639
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19640
+ Rendering text template
19641
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19642
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19643
+ Processing by Sitepress::SiteController#show as HTML
19644
+ Parameters: {"resource_path"=>"/time"}
19645
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19646
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19647
+ Rendering inline template within layouts/sitepress_test_layout
19648
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19649
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19650
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19651
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19652
+ Rendering text template
19653
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19654
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19655
+ Processing by Sitepress::SiteController#show as HTML
19656
+ Parameters: {"resource_path"=>"/time"}
19657
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19658
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19659
+ Rendering inline template within layouts/sitepress_test_layout
19660
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19661
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19662
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19663
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19664
+ Rendering text template
19665
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19666
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19667
+ Processing by Sitepress::SiteController#show as HTML
19668
+ Parameters: {"resource_path"=>"/time"}
19669
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19670
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19671
+ Rendering inline template within layouts/sitepress_test_layout
19672
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19673
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19674
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 265)
19675
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19676
+ Rendering text template
19677
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19678
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19679
+ Processing by Sitepress::SiteController#show as HTML
19680
+ Parameters: {"resource_path"=>"/time"}
19681
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19682
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19683
+ Rendering inline template within layouts/sitepress_test_layout
19684
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19685
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19686
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19687
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19688
+ Rendering text template
19689
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19690
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1105)
19691
+ Processing by Sitepress::SiteController#show as HTML
19692
+ Parameters: {"resource_path"=>"/non-existent"}
19693
+ Completed 404 Not Found in 0ms (Allocations: 601)
19694
+ Processing by Sitepress::SiteController#show as HTML
19695
+ Parameters: {"resource_path"=>"/hi"}
19696
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19697
+ Rendering layout layouts/application.html.erb
19698
+ Rendering inline template within layouts/application
19699
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 58)
19700
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 214)
19701
+ Rendering text template
19702
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19703
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 973)
19704
+ Processing by Sitepress::SiteController#show as HTML
19705
+ Parameters: {"resource_path"=>"/hi"}
19706
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19707
+ Rendering layout layouts/application.html.erb
19708
+ Rendering inline template within layouts/application
19709
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19710
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19711
+ Rendering text template
19712
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19713
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 849)
19714
+ Processing by Sitepress::SiteController#show as HTML
19715
+ Parameters: {"resource_path"=>"/hi"}
19716
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19717
+ Rendering layout layouts/application.html.erb
19718
+ Rendering inline template within layouts/application
19719
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19720
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19721
+ Rendering text template
19722
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19723
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 849)
19724
+ Processing by Sitepress::SiteController#show as HTML
19725
+ Parameters: {"resource_path"=>"/hi"}
19726
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19727
+ Rendering layout layouts/application.html.erb
19728
+ Rendering inline template within layouts/application
19729
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 53)
19730
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19731
+ Rendering text template
19732
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19733
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 849)
19734
+ Processing by Sitepress::SiteController#show as HTML
19735
+ Parameters: {"resource_path"=>"time"}
19736
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
19737
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
19738
+ Rendering inline template within layouts/sitepress_test_layout
19739
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
19740
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
19741
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 265)
19742
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
19743
+ Rendering text template
19744
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19745
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 743)
19746
+ Processing by Sitepress::SiteController#show as HTML
19747
+ Parameters: {"resource_path"=>"hi"}
19748
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
19749
+ Rendering layout layouts/application.html.erb
19750
+ Rendering inline template within layouts/application
19751
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 53)
19752
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 93)
19753
+ Rendering text template
19754
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19755
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 466)
19756
+ Processing by Sitepress::SiteController#show as HTML
19757
+ Parameters: {"resource_path"=>"all_pages"}
19758
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
19759
+ Rendering layout layouts/application.html.erb
19760
+ Rendering inline template within layouts/application
19761
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 230)
19762
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 271)
19763
+ Rendering text template
19764
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
19765
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 682)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sitepress-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-13 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-rails
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 4.0.2
61
+ version: 4.0.3
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 4.0.2
68
+ version: 4.0.3
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: railties
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -242,7 +242,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
242
242
  - !ruby/object:Gem::Version
243
243
  version: '0'
244
244
  requirements: []
245
- rubygems_version: 3.4.6
245
+ rubygems_version: 3.5.9
246
246
  signing_key:
247
247
  specification_version: 4
248
248
  summary: Sitepress rails integration.