-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathliquid-spec.gemspec
More file actions
33 lines (25 loc) · 1.06 KB
/
liquid-spec.gemspec
File metadata and controls
33 lines (25 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
require_relative "lib/liquid/spec/version"
Gem::Specification.new do |spec|
spec.name = "liquid-spec"
spec.version = Liquid::Spec::VERSION
spec.authors = ["derekstride"]
spec.email = ["derek.stride@shopify.com"]
spec.summary = "Test suite and CLI for testing Liquid template implementations"
spec.description = "liquid-spec is a test suite for the Liquid templating language. " \
"Use it to verify your Liquid implementation produces correct output."
spec.homepage = "https://github.com/Shopify/liquid-spec"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.metadata["source_code_uri"] = spec.homepage
spec.files = Dir.chdir(__dir__) do
%x(git ls-files -z).split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:test|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = "bin"
spec.executables = ["liquid-spec"]
# No runtime dependencies on liquid - the adapter provides it
spec.add_dependency("super_diff", "~> 0.18")
spec.require_paths = ["lib"]
end