Sha256: 0a2edda7246649e3248d237176902ade00bcbf16be3113c50f2af9919fe55432

Contents?: true

Size: 1.34 KB

Versions: 21

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "platformos_check/version"

Gem::Specification.new do |spec|
  spec.name          = "platformos-check"
  spec.version       = PlatformosCheck::VERSION
  spec.authors       = ["Piotr Bliszczyk", "Dariusz Gorzęba", "Maciej Krajowski-Kukiel"]
  spec.email         = ["support@platformos.com"]

  spec.summary       = "A platformOS App Linter"
  spec.homepage      = "https://github.com/Platform-OS/platformos-lsp"
  spec.license       = "MIT"

  spec.required_ruby_version = ">= 3.2"

  spec.metadata['allowed_push_host'] = 'https://rubygems.org'

  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    # Load all files tracked in git except files in test directory
    # Include untracked files in liquid documentation folder
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test/|old_theme_check/)}) } + Dir['data/platformos_liquid/documentation/**']
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency('graphql', '~> 2.0.0')
  spec.add_dependency('liquid', '>= 5.4.0')
  spec.add_dependency('nokogiri', '>= 1.12')
  spec.add_dependency('parser', '~> 3')

  spec.metadata['rubygems_mfa_required'] = 'true'
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
platformos-check-0.0.3 platformos-check.gemspec