|
1 |
| - |
2 |
| -lib = File.expand_path("../lib", __FILE__) |
| 1 | +lib = File.expand_path('lib', __dir__) |
3 | 2 | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4 |
| -require "failing_spec_detector/version" |
| 3 | +require 'failing_spec_detector/version' |
5 | 4 |
|
6 | 5 | Gem::Specification.new do |spec|
|
7 |
| - spec.name = "failing_spec_detector" |
| 6 | + spec.name = 'failing_spec_detector' |
8 | 7 | spec.version = FailingSpecDetector::VERSION
|
9 |
| - spec.authors = ["safa"] |
10 |
| - spec.email = ["[email protected]"] |
| 8 | + spec.authors = ['safa'] |
| 9 | + spec.email = ['[email protected]'] |
11 | 10 |
|
12 | 11 | spec.summary = 'A tool to detect failing specs and group them by error message'
|
13 | 12 | spec.description = <<~DESCRIPTION
|
14 | 13 | Automatic Failing spec detector.
|
15 | 14 | Introduces a custom rspec formatter to detect failing specs and group them by exception.
|
16 | 15 | DESCRIPTION
|
17 |
| - spec.homepage = "https://github.com/nebulab/failing_spec_detector" |
18 |
| - spec.license = "MIT" |
| 16 | + spec.homepage = 'https://github.com/nebulab/failing_spec_detector' |
| 17 | + spec.license = 'MIT' |
| 18 | + spec.required_ruby_version = '>= 2.7.0' |
19 | 19 |
|
20 | 20 | # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
21 | 21 | # to allow pushing to a single host or delete this section to allow pushing to any host.
|
22 | 22 | if spec.respond_to?(:metadata)
|
23 | 23 |
|
24 |
| - spec.metadata["homepage_uri"] = spec.homepage |
25 |
| - spec.metadata["source_code_uri"] = "https://github.com/nebulab/failing_spec_detector" |
| 24 | + spec.metadata['homepage_uri'] = spec.homepage |
| 25 | + spec.metadata['source_code_uri'] = 'https://github.com/nebulab/failing_spec_detector' |
26 | 26 | # spec.metadata["changelog_uri"] = "https://github.com/nebulab/failing_spec_detector"
|
27 | 27 | else
|
28 |
| - raise "RubyGems 2.0 or newer is required to protect against " \ |
29 |
| - "public gem pushes." |
| 28 | + raise 'RubyGems 2.0 or newer is required to protect against ' \ |
| 29 | + 'public gem pushes.' |
30 | 30 | end
|
31 | 31 |
|
32 | 32 | # Specify which files should be added to the gem when it is released.
|
33 | 33 | # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
34 |
| - spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do |
| 34 | + spec.files = Dir.chdir(File.expand_path(__dir__)) do |
35 | 35 | `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
36 | 36 | end
|
37 |
| - spec.bindir = "exe" |
| 37 | + spec.bindir = 'exe' |
38 | 38 | spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
39 |
| - spec.require_paths = ["lib"] |
| 39 | + spec.require_paths = ['lib'] |
40 | 40 |
|
41 |
| - spec.add_development_dependency "bundler" |
42 |
| - spec.add_development_dependency "rake", "~> 10.0" |
43 |
| - spec.add_development_dependency "rspec", "~> 3.0" |
| 41 | + spec.add_development_dependency 'bundler' |
| 42 | + spec.add_development_dependency 'rake', '~> 10.0' |
| 43 | + spec.add_development_dependency 'rspec', '~> 3.0' |
| 44 | + spec.metadata['rubygems_mfa_required'] = 'true' |
44 | 45 | end
|
0 commit comments