Sha256: 46b54da30ef29305afa2a796e997b3b5dafe926f36420b5c2aa97e523f4bbae2

Contents?: true

Size: 1003 Bytes

Versions: 12

Compression:

Stored size: 1003 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('nokogumbo')
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
theme-check-1.2.0 theme-check.gemspec
theme-check-1.1.0 theme-check.gemspec
theme-check-1.0.0 theme-check.gemspec
theme-check-0.10.2 theme-check.gemspec
theme-check-0.10.1 theme-check.gemspec
theme-check-0.10.0 theme-check.gemspec
theme-check-0.9.1 theme-check.gemspec
theme-check-0.9.0 theme-check.gemspec
theme-check-0.8.3 theme-check.gemspec
theme-check-0.8.2 theme-check.gemspec
theme-check-0.8.1 theme-check.gemspec
theme-check-0.8.0 theme-check.gemspec