mirror of
https://github.com/Shopify/liquid.git
synced 2026-01-26 20:19:26 +00:00
39 lines
842 B
Ruby
39 lines
842 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
git_source(:github) do |repo_name|
|
|
"https://github.com/#{repo_name}.git"
|
|
end
|
|
|
|
gemspec
|
|
|
|
gem "base64"
|
|
|
|
group :benchmark, :test do
|
|
gem 'benchmark-ips'
|
|
gem 'memory_profiler'
|
|
gem 'terminal-table'
|
|
gem "lru_redux"
|
|
|
|
install_if -> { RUBY_PLATFORM !~ /mingw|mswin|java/ && RUBY_ENGINE != 'truffleruby' } do
|
|
gem 'stackprof'
|
|
end
|
|
end
|
|
|
|
group :development do
|
|
gem "webrick"
|
|
end
|
|
|
|
group :test do
|
|
gem 'benchmark'
|
|
gem 'rubocop', '~> 1.82.0'
|
|
gem 'rubocop-shopify', '~> 2.18.0', require: false
|
|
gem 'rubocop-performance', require: false
|
|
end
|
|
|
|
group :spec do
|
|
# Minimum required: 3d1b492 (run `bundle update liquid-spec` to get newer)
|
|
gem 'liquid-spec', github: 'Shopify/liquid-spec', ref: '3d1b492dce27cd78b4d5a46ca8cf260ae1349f29'
|
|
gem 'activesupport', require: false
|
|
end
|