Sha256: 112ae916c3c8f2ccc6d51bedd85cbe375027decbb44b2ff351e1c6adac353d78

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

require_relative "lib/orthoses/yard/version"

Gem::Specification.new do |spec|
  spec.name = "orthoses-yard"
  spec.version = Orthoses::YARD::VERSION
  spec.authors = ["ksss"]
  spec.email = ["co000ri@gmail.com"]

  spec.summary = "Orthoses extention for YARD."
  spec.description = "Orthoses extention for YARD."
  spec.homepage = "https://github.com/ksss/orthoses-yard"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = spec.homepage

  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      next true if (f == __FILE__)
      next true if f.match?(%r{\A(?:bin|known_sig)/}) # dir
      next true if f.match?(%r{\A\.(?:git)}) # git
      next true if f.match?(%r{\A(?:rbs_collection|Steepfile|Rakefile)}) # top file
      next true if f.match?(%r{_test\.rb\z}) # test
      false
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "orthoses"
  spec.add_dependency "yard"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
orthoses-yard-0.1.0 orthoses-yard.gemspec