Sha256: 71021ac47bed2ea7e323f3da4e6cf82162910ddd2261f79a62148b22cd5b691c
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'aptly_cli/version' Gem::Specification.new do |spec| spec.name = "aptly_cli" spec.version = AptlyCli::VERSION spec.authors = ["Zane"] spec.email = ["zane.williamson@gmail.com"] if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" spec.metadata['optional_gems'] = "keyring" end spec.summary = %q{Command line client to interact with Aptly package management system} spec.description = %q{Aptly API client} spec.homepage = "https://github.com/sepulworld/aptly_cli" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "bin" spec.executables = "aptly-cli" spec.require_paths = ["lib"] spec.required_ruby_version = '>= 2.0.0' spec.add_development_dependency "bundler" spec.add_development_dependency "rake", ">= 12.3.3" spec.add_development_dependency "minitest" spec.add_development_dependency "coveralls" spec.add_development_dependency "simplecov" spec.add_development_dependency "rubocop" spec.add_dependency('httparty', '>= 0.16.2') spec.add_dependency "commander", "~> 4.3" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aptly_cli-0.6.1 | aptly_cli.gemspec |
aptly_cli-0.6.0 | aptly_cli.gemspec |