Sha256: 8787e96d7e51a602ab9d141c1ad7dba5c583254a884a49d1f8e0dbcc41c3b319
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true Gem::Specification.new do |spec| spec.name = "sidekiq-process_manager" spec.version = File.read(File.expand_path("VERSION", __dir__)).strip spec.authors = ["Brian Durand"] spec.email = ["bbdurand@gmail.com"] spec.summary = "Process manager for forking and monitoring multiple sidekiq processes." spec.homepage = "https://github.com/bdurand/sidekiq-process_manager" spec.license = "MIT" # 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. ignore_files = %w[ . Appraisals Gemfile Gemfile.lock Rakefile gemfiles/ spec/ ] spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } } end spec.bindir = "bin" spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.5" spec.add_dependency "sidekiq", ">= 5.0" spec.add_dependency "get_process_mem" spec.add_development_dependency "bundler" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-process_manager-1.1.2 | sidekiq-process_manager.gemspec |
sidekiq-process_manager-1.1.1 | sidekiq-process_manager.gemspec |
sidekiq-process_manager-1.1.0 | sidekiq-process_manager.gemspec |