Sha256: 645b70668422add576af58178d9dfbfc1aaedd159f353182700e998361063d87

Contents?: true

Size: 1.12 KB

Versions: 2

Compression:

Stored size: 1.12 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'minitest/retry/version'

Gem::Specification.new do |spec|
  spec.name          = "minitest-retry"
  spec.version       = Minitest::Retry::VERSION
  spec.authors       = ["Yuji Yaginuma"]
  spec.email         = ["yuuji.yaginuma@gmail.com"]

  spec.summary       = %q{re-run the test when the test fails}
  spec.description   = %q{re-run the test when the test fails}
  spec.homepage      = "https://github.com/y-yagi/minitest-retry"

  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
  spec.metadata['allowed_push_host'] = "https://rubygems.org"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency 'minitest', '>= 5.0'

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
minitest-retry-0.1.1 minitest-retry.gemspec
minitest-retry-0.1.0 minitest-retry.gemspec