Sha256: 0680475f4b3a42b31427b9367ad450a04e18e67139b6e434655dda0c6d3c3acf

Contents?: true

Size: 1.56 KB

Versions: 13

Compression:

Stored size: 1.56 KB

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

# Maintain your gem's version:
require 'gitlab_janitor/version'

Gem::Specification.new 'gitlab-janitor' do |spec|
  spec.version       = ENV['BUILDVERSION'].to_i > 0 ? "#{GitlabJanitor::VERSION}.#{ENV['BUILDVERSION'].to_i}" : GitlabJanitor::VERSION
  spec.authors       = ['Samoilenko Yuri']
  spec.email         = ['kinnalru@gmail.com']
  spec.description   = spec.summary = 'GitLab Janitor is a tool to automatically manage stalled containers when using Docker.'
  spec.homepage      = 'https://github.com/RnD-Soft/gitlab-janitor'
  spec.license       = 'MIT'

  spec.files         = Dir['bin/**/*', 'lib/**/*', 'Gemfile*', 'LICENSE', 'README.md',
                           'Dockerfile*', 'docker-compose.yml', '*.gemspec']
  spec.bindir        = 'bin'
  spec.executables   = spec.files.grep(%r{^bin/gitlab-janitor}) {|f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'awesome_print'
  spec.add_development_dependency 'bundler', '~> 2.0', '>= 2.0.1'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'rspec_junit_formatter'
  spec.add_development_dependency 'simplecov'
  spec.add_development_dependency 'simplecov-console'

  spec.add_runtime_dependency 'activesupport', '~> 6.0'
  spec.add_runtime_dependency 'docker-api'
  spec.add_runtime_dependency 'fugit'
  spec.add_runtime_dependency 'redis'
  spec.add_runtime_dependency 'optparse'
  spec.add_runtime_dependency 'tzinfo-data'
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
gitlab-janitor-1.0.5.229406 gitlab-janitor.gemspec
gitlab-janitor-1.0.4.134297 gitlab-janitor.gemspec
gitlab-janitor-1.0.4.134295 gitlab-janitor.gemspec
gitlab-janitor-1.0.4.94895 gitlab-janitor.gemspec
gitlab-janitor-1.0.4.94868 gitlab-janitor.gemspec
gitlab-janitor-1.0.4.94864 gitlab-janitor.gemspec
gitlab-janitor-1.0.3.92955 gitlab-janitor.gemspec
gitlab-janitor-1.0.2.92954 gitlab-janitor.gemspec
gitlab-janitor-1.0.2.92951 gitlab-janitor.gemspec
gitlab-janitor-1.0.2.92948 gitlab-janitor.gemspec
gitlab-janitor-1.0.2.92942 gitlab-janitor.gemspec
gitlab-janitor-1.0.2.92940 gitlab-janitor.gemspec
gitlab-janitor-1.0.2.92939 gitlab-janitor.gemspec