Sha256: 71c0723e284439ffd7a443fb72e2dd671bd7630d57416c36b848bcc00c24427a
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "theme_check/version" Gem::Specification.new do |spec| spec.name = "theme-check" spec.version = ThemeCheck::VERSION spec.authors = ["Marc-André Cournoyer"] spec.email = ["marcandre.cournoyer@shopify.com"] spec.summary = "A Shopify Theme Linter" spec.homepage = "https://github.com/Shopify/theme-check" spec.license = "MIT" spec.required_ruby_version = ">= 2.6" spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do %x{git ls-files -z}.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency('liquid', '>= 5.0.1') spec.add_dependency('nokogiri', '>= 1.12') spec.add_dependency('parser', '~> 3') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
theme-check-1.6.1 | theme-check.gemspec |
theme-check-1.6.0 | theme-check.gemspec |