Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: phlex-ruby/phlex
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b037a6c65bc93513dd4b2ab0b487d973c33649da
Choose a base ref
..
head repository: phlex-ruby/phlex
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 062bbe8c4077604fe56f372b1f3226d7babe2746
Choose a head ref
Showing with 6 additions and 0 deletions.
  1. +1 −0 lib/phlex.rb
  2. +5 −0 lib/phlex/deferred_render.rb
1 change: 1 addition & 0 deletions lib/phlex.rb
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ module Phlex
autoload :CSV, "phlex/csv"
autoload :Callable, "phlex/callable"
autoload :Context, "phlex/context"
autoload :DeferredRender, "phlex/deferred_render"
autoload :ElementClobberingGuard, "phlex/element_clobbering_guard"
autoload :Elements, "phlex/elements"
autoload :Error, "phlex/error"
5 changes: 5 additions & 0 deletions lib/phlex/deferred_render.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

module Phlex::DeferredRender
# This module doesn't do anything. Phlex::HTML#call checks for its inclusion in the ancestry instead.
end