Sha256: e905014dd88f049899d85f503cf7d8346a390aac5e8802179f9b0a180271750b

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

require_relative "lib/dpm/version"

Gem::Specification.new do |spec|
  spec.name = "dpmrb"
  spec.version = DPM::VERSION
  spec.authors = ["Song Huang"]
  spec.email = ["songhuangcn@gmail.com"]

  spec.summary = "Docker Package Manager."
  spec.description = "Makes using your containers as easy as package managers (`apt`, `yml`, `brew`)."
  spec.homepage = "https://github.com/songhuangcn/dpm"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

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

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "bin"
  spec.executables = ["dpm"]
  spec.require_paths = ["lib"]

  spec.post_install_message = "Please start with `dpm help`"

  spec.add_dependency "activesupport", "~> 6.x"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dpmrb-0.2.1 dpm.gemspec
dpmrb-0.2.0 dpm.gemspec
dpmrb-0.1.1 dpm.gemspec