forked from czottmann/retryable
-
Notifications
You must be signed in to change notification settings - Fork 37
/
retryable.gemspec
35 lines (28 loc) · 1.28 KB
/
retryable.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
25
26
27
28
29
30
31
32
33
34
35
# rubocop:disable Style/ExpandPathArguments
lib = File.expand_path('../lib', __FILE__)
# rubocop:enable Style/ExpandPathArguments
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'retryable/version'
Gem::Specification.new do |spec|
spec.name = 'retryable'
spec.version = Retryable::Version
spec.authors = ['Nikita Fedyashev', 'Carlo Zottmann', 'Chu Yeow']
spec.email = ['[email protected]']
spec.summary = 'Retrying code blocks in Ruby'
spec.description = spec.summary
spec.homepage = 'http://github.com/nfedyashev/retryable'
if spec.respond_to?('metadata=')
spec.metadata = {
'changelog_uri' => 'https://github.com/nfedyashev/retryable/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/nfedyashev/retryable/tree/master'
# 'rubygems_mfa_required' => true # preparation for future release - expect it to be MFA signed
}
end
spec.licenses = ['MIT']
spec.require_paths = ['lib']
spec.files = Dir['{config,lib,spec}/**/*', '*.md', '*.gemspec', 'Gemfile', 'Rakefile']
spec.test_files = spec.files.grep(%r{^spec/})
spec.required_ruby_version = Gem::Requirement.new('>= 1.9.3')
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
spec.add_development_dependency 'bundler'
end