diff --git a/Gemfile b/Gemfile index 509316c1a..013b1700a 100644 --- a/Gemfile +++ b/Gemfile @@ -23,8 +23,4 @@ group :test do gem 'rubocop', '~> 1.61.0' gem 'rubocop-shopify', '~> 2.12.0', require: false gem 'rubocop-performance', require: false - - platform :mri, :truffleruby do - gem 'liquid-c', github: 'Shopify/liquid-c', ref: 'main' - end end diff --git a/Rakefile b/Rakefile index 82588eda1..21135d1b9 100755 --- a/Rakefile +++ b/Rakefile @@ -43,8 +43,6 @@ task :test do Rake::Task['base_test'].invoke if RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'truffleruby' - ENV['LIQUID_C'] = '1' - ENV['LIQUID_PARSER_MODE'] = 'lax' Rake::Task['integration_test'].reenable Rake::Task['integration_test'].invoke diff --git a/lib/liquid/version.rb b/lib/liquid/version.rb index d064151fb..4be6b9775 100644 --- a/lib/liquid/version.rb +++ b/lib/liquid/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module Liquid - VERSION = "5.6.0.rc1" + VERSION = "5.6.0.rc2" end diff --git a/test/test_helper.rb b/test/test_helper.rb index 1ecfce3f5..184720b6d 100755 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -15,11 +15,6 @@ end Liquid::Environment.default.error_mode = mode -if ENV['LIQUID_C'] == '1' - puts "-- LIQUID C" - require 'liquid/c' -end - if Minitest.const_defined?('Test') # We're on Minitest 5+. Nothing to do here. else