Sha256: c594095a1978b4e6943fa0c80771fe6618d9141042d61ce03c008295fedb27e8

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

require_relative 'lib/sidekiq/redeploy/version'

Gem::Specification.new do |spec|
  spec.name = 'sidekiq-redeploy'
  spec.version = Sidekiq::Redeploy::VERSION
  spec.authors = ['tbeauvais']
  spec.email = ['tbeauvais1@gmail.com']

  spec.summary       = 'Sidekiq launcher to redeploy and reload app from artifact.'
  spec.description   = 'Sidekiq launcher to redeploy and reload app from a remote artifact. ' \
                       'This will detect app changes, once detected a new artifact ' \
                       'will be pulled and the Sidekiq app will be reloaded.'
  spec.homepage      = 'https://github.com/tbeauvais/sidekiq-redeploy'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')

  spec.executables = ['sidekiq-loader']

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/tbeauvais/sidekiq-redeploy'
  spec.metadata['changelog_uri'] = 'https://github.com/tbeauvais/sidekiq-redeploy/CHANGELOG.md'

  # 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|
      (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
    end
  end
  spec.bindir        = 'bin'
  spec.require_paths = ['lib']

  spec.add_dependency 'puma-redeploy', '~> 0.4.0'
  spec.add_dependency 'sidekiq', '>= 6', '< 8'

  spec.metadata['rubygems_mfa_required'] = 'true'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sidekiq-redeploy-0.2.0 sidekiq-redeploy.gemspec