lib/phlex/experimental.rb
# frozen_string_literal: true module Phlex module Experimental def before_template if Phlex.configuration.experimental_warnings puts "Warning: #{self.class.name} is using experimental Phlex features that are subject to change." end super end end end