File: Gemfile

package info (click to toggle)
ruby-liquid-c 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 504 kB
  • sloc: ansic: 3,866; ruby: 1,151; makefile: 7
file content (24 lines) | stat: -rwxr-xr-x 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

source "https://rubygems.org"
git_source(:github) do |repo_name|
  "https://github.com/#{repo_name}.git"
end

gemspec

gem "liquid", github: "Shopify/liquid", ref: "master"

group :test do
  gem "base64", require: false # for older rubocop on Ruby 3.4
  gem "rubocop", "~> 1.24.1", require: false
  gem "rubocop-performance", "~> 1.13.2", require: false
  gem "rubocop-shopify", "~> 2.4.0", require: false
  gem "spy", "0.4.1"
  gem "benchmark-ips"
  gem "ruby_memcheck"
end

group :development do
  gem "byebug"
end