Sha256: 77ee0eb0d18a77846690f9bddc6440a027447cb1f92990ef91d503e0d59ce2af
Contents?: true
Size: 1.08 KB
Versions: 3
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-alive" spec.required_ruby_version = ">= 2.6.0" spec.metadata["homepage_uri"] = "https://github.com/kyoshidajp/bundler-alive" spec.metadata["source_code_uri"] = "https://github.com/kyoshidajp/bundler-alive" spec.metadata["changelog_uri"] = "https://github.com/kyoshidajp/bundler-alive" 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bundler-alive-0.1.3 | bundler-alive.gemspec |
bundler-alive-0.1.2 | bundler-alive.gemspec |
bundler-alive-0.1.1 | bundler-alive.gemspec |