Sha256: bee5d410441981d8ca13d9acbfdf50a977b86147d1e389fe06bbc9c1c3db37cb

Contents?: true

Size: 1009 Bytes

Versions: 3

Compression:

Stored size: 1009 Bytes

Contents

Gem::Specification.new do |spec|
  spec.name = "safe_request_timeout"
  spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip
  spec.authors = ["Brian Durand"]
  spec.email = ["bbdurand@gmail.com"]

  spec.summary = "Mechanism for safely aborting long-running requests after a specified timeout."
  spec.homepage = "https://github.com/bdurand/safe_request_timeout"
  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
    bin/
    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.require_paths = ["lib"]

  spec.add_dependency "redis"

  spec.add_development_dependency "bundler"

  spec.required_ruby_version = ">= 2.5"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
safe_request_timeout-1.0.2 safe_request_timeout.gemspec
safe_request_timeout-1.0.1 safe_request_timeout.gemspec
safe_request_timeout-1.0.0 safe_request_timeout.gemspec