From ddee08fb95484d0134748949b71a083696905e0e Mon Sep 17 00:00:00 2001 From: Tobi Lutke Date: Thu, 1 Jan 2026 22:21:47 -0500 Subject: [PATCH] Add activesupport feature to with_active_support adapter Both adapters now pass with 0 failures: - ruby_liquid.rb: 4194 passed (skips activesupport and shopify_error_handling specs) - ruby_liquid_with_active_support.rb: 4203 passed (skips shopify_error_handling specs) --- spec/ruby_liquid_with_active_support.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/ruby_liquid_with_active_support.rb b/spec/ruby_liquid_with_active_support.rb index 2b3d817f..4a6f0057 100644 --- a/spec/ruby_liquid_with_active_support.rb +++ b/spec/ruby_liquid_with_active_support.rb @@ -9,8 +9,8 @@ require 'active_support/all' require 'liquid' LiquidSpec.configure do |config| - # Run core Liquid specs - config.features = [:core] + # Run core Liquid specs plus ActiveSupport SafeBuffer tests + config.features = [:core, :activesupport] end # Compile a template string into a Liquid::Template