Sha256: 8c2c26b770e26e4bda5b5f901cffdbb64e4a67b2c300e8c1cb54a83c0ed7fc2c

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require_relative "lib/bundler/alive/version"

Gem::Specification.new do |spec|
  spec.name = "bundler-alive"
  spec.version = Bundler::Alive::VERSION
  spec.authors = ["Katsuhiko YOSHIDA"]
  spec.email = ["claddvd@gmail.com"]

  spec.summary = "Are your gems alive?"
  spec.description = "bundler-alive reports gems are archived or not."
  spec.homepage = "https://github.com/kyoshidajp/bundler-audit"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = "https://github.com/kyoshidajp/bundler-audit"
  spec.metadata["source_code_uri"] = "https://github.com/kyoshidajp/bundler-audit"
  spec.metadata["changelog_uri"] = "https://github.com/kyoshidajp/bundler-audit"

  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "bin"
  spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.metadata["rubygems_mfa_required"] = "true"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bundler-alive-0.1.0 bundler-alive.gemspec