-
Notifications
You must be signed in to change notification settings - Fork 4
/
exponential-backoff.gemspec
24 lines (21 loc) · 1.04 KB
/
exponential-backoff.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/exponential_backoff/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paweł Pacana"]
gem.email = ["[email protected]"]
gem.summary = %q{Exponential backoff algorithm for better reconnect intervals.}
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "exponential-backoff"
gem.require_paths = ["lib"]
gem.version = ExponentialBackoff::VERSION
gem.metadata = {
"changelog_uri" => "https://github.com/pawelpacana/exponential-backoff/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/pawelpacana/exponential-backoff",
"bug_tracker_uri" => "https://github.com/pawelpacana/exponential-backoff/issues",
}
gem.add_development_dependency 'rake'
gem.add_development_dependency 'minitest', '~> 5.13'
gem.add_development_dependency 'mutant-minitest'
end