Sha256: 7ec4fbf723902d6f8c03a66aa4af6c7c9ca0163d04d104ddd2b5ac1d0d9b22fd

Contents?: true

Size: 1.28 KB

Versions: 23

Compression:

Stored size: 1.28 KB

Contents

# frozen_string_literal: true

require_relative "lib/helmsnap/version"

Gem::Specification.new do |spec|
  spec.name = "helmsnap"
  spec.version = Helmsnap::VERSION
  spec.authors = ["Yuri Smirnov"]
  spec.email = ["tycooon@yandex.ru"]

  spec.summary = "A tool for creating and checking helm chart snapshots."
  spec.homepage = "https://github.com/tycooon/helmsnap"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.7.0"

  # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci))})
    end
  end

  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "colorize"

  spec.add_development_dependency "rubocop-config-umbrellio"
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
helmsnap-1.0.2 helmsnap.gemspec
helmsnap-1.0.1 helmsnap.gemspec
helmsnap-1.0.0 helmsnap.gemspec
helmsnap-0.9.0 helmsnap.gemspec
helmsnap-0.8.1 helmsnap.gemspec
helmsnap-0.8.0 helmsnap.gemspec
helmsnap-0.7.5 helmsnap.gemspec
helmsnap-0.7.4 helmsnap.gemspec
helmsnap-0.7.3 helmsnap.gemspec
helmsnap-0.7.2 helmsnap.gemspec
helmsnap-0.7.1 helmsnap.gemspec
helmsnap-0.7.0 helmsnap.gemspec
helmsnap-0.6.2 helmsnap.gemspec
helmsnap-0.6.1 helmsnap.gemspec
helmsnap-0.6.0 helmsnap.gemspec
helmsnap-0.5.1 helmsnap.gemspec
helmsnap-0.5.0 helmsnap.gemspec
helmsnap-0.4.2 helmsnap.gemspec
helmsnap-0.4.1 helmsnap.gemspec
helmsnap-0.4.0 helmsnap.gemspec