Sha256: 38ee8b8eb18b576017598b696ad589dbf2e9e5cf735a22a441820534208c3bab

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

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

require 'worker_glass/version'

Gem::Specification.new do |spec|
  spec.name          = 'worker-glass'
  spec.version       = WorkerGlass::VERSION
  spec.platform      = Gem::Platform::RUBY
  spec.authors       = ['Maciej Mensfeld', 'Pavlo Vavruk']
  spec.email         = %w[maciej@coditsu.io pavlo.vavruk@gmail.com]
  spec.summary       = 'Timeout and Reentrancy for your background processing workers!'
  spec.description   = 'Background worker wrappers that provides optional timeout and reentrancy'
  spec.homepage      = 'https://github.com/karafka/worker-glass'
  spec.license       = 'LGPL-3.0'
  spec.required_ruby_version = '>= 2.5.0'

  spec.add_dependency 'activesupport'
  spec.add_dependency 'null-logger'

  if $PROGRAM_NAME.end_with?('gem')
    spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
  end

  spec.cert_chain    = %w[certs/mensfeld.pem]
  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = %w[lib]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
worker-glass-0.2.5 worker-glass.gemspec