Sha256: 94f2e03ed75d471655d6ff2b42f647b38d69ab701bf73fd53664e36944c84c34

Contents?: true

Size: 1013 Bytes

Versions: 5

Compression:

Stored size: 1013 Bytes

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')
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
theme-check-1.5.2 theme-check.gemspec
theme-check-1.5.1 theme-check.gemspec
theme-check-1.5.0 theme-check.gemspec
theme-check-1.4.0 theme-check.gemspec
theme-check-1.3.0 theme-check.gemspec