Sha256: 20a36c3fe80690233f9e89def09da37b38e81f938c57c90ea6b6eeb1aa6c719b

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 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('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

2 entries across 2 versions & 1 rubygems

Version Path
platformos-check-0.0.2 platformos-check.gemspec
platformos-check-0.0.1 platformos-check.gemspec