-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrspec-retry.gemspec
27 lines (23 loc) · 1.26 KB
/
rspec-retry.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
# frozen_string_literal: true
require 'English'
require File.expand_path('lib/rspec/retry/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['Yusuke Mito', 'Michael Glass', 'James Glenn', 'Steve Laing']
gem.email = ['james.glenn@digital.education.gov.uk']
gem.description = 'Retry intermittently failing rspec examples – This is an extension to the original gem and will log the flakey tests'
gem.summary = 'Retry intermittently failing rspec examples – This is an extension to the original gem and will log the flakey tests'
gem.homepage = 'https://github.com/DFE-Digital/rspec-retry'
gem.license = 'MIT'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(/^bin\//).map { |f| File.basename(f) }
gem.name = 'rspec-retry'
gem.require_paths = ['lib']
gem.version = RSpec::Retry::VERSION
gem.required_ruby_version = '>= 2.7.5'
gem.add_runtime_dependency(%(rspec-core), '>3.3')
gem.add_development_dependency 'appraisal'
gem.add_development_dependency 'byebug', '~>9.0.6' # 9.1 deprecates ruby 2.1
gem.add_development_dependency 'pry-byebug'
gem.add_development_dependency 'rspec'
gem.metadata['rubygems_mfa_required'] = 'true'
end