Skip to content

Commit 271d931

Browse files
committed
Fix Lint errors
1 parent b62aee5 commit 271d931

9 files changed

+118
-35
lines changed

.rubocop.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
inherit_from: .rubocop_todo.yml
2+
3+
AllCops:
4+
NewCops: enable
5+
SuggestExtensions: false
6+
7+
Naming/FileName:
8+
Exclude:
9+
- lib/rubocop-solidus.rb
10+
11+
Metrics/BlockLength:
12+
Exclude:
13+
- 'Rakefile'
14+
- '**/*.rake'
15+
- 'spec/**/*.rb'
16+
- '*.gemspec'
17+
18+
Metrics/MethodLength:
19+
Exclude:
20+
- 'Rakefile'
21+
- '**/*.rake'
22+
- 'spec/**/*.rb'
23+
- '*.gemspec'
24+
25+
Metrics/ClassLength:
26+
Exclude:
27+
- 'tasks/**/*.rb'

.rubocop_todo.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# This configuration was generated by
2+
# `rubocop --auto-gen-config`
3+
# on 2023-12-27 14:39:52 UTC using RuboCop version 1.57.2.
4+
# The point is for the user to remove these configuration records
5+
# one by one as the offenses are removed from the code base.
6+
# Note that changes in the inspected code, or installation of new
7+
# versions of RuboCop, may require this file to be generated again.
8+
9+
# Offense count: 3
10+
# Configuration parameters: EnforcedStyle, AllowedGems, Include.
11+
# SupportedStyles: Gemfile, gems.rb, gemspec
12+
# Include: **/*.gemspec, **/Gemfile, **/gems.rb
13+
Gemspec/DevelopmentDependencies:
14+
Exclude:
15+
- 'failing_spec_detector.gemspec'
16+
17+
# Offense count: 1
18+
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
19+
Metrics/AbcSize:
20+
Max: 19
21+
22+
# Offense count: 1
23+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
24+
Metrics/MethodLength:
25+
Max: 12
26+
27+
# Offense count: 1
28+
# Configuration parameters: AllowedConstants.
29+
Style/Documentation:
30+
Exclude:
31+
- 'spec/**/*'
32+
- 'test/**/*'
33+
- 'lib/failing_spec_detector/failing_spec_formatter.rb'
34+
35+
# Offense count: 8
36+
# This cop supports unsafe autocorrection (--autocorrect-all).
37+
# Configuration parameters: EnforcedStyle.
38+
# SupportedStyles: always, always_true, never
39+
Style/FrozenStringLiteralComment:
40+
Exclude:
41+
- 'Gemfile'
42+
- 'Rakefile'
43+
- 'bin/console'
44+
- 'failing_spec_detector.gemspec'
45+
- 'lib/failing_spec_detector.rb'
46+
- 'lib/failing_spec_detector/version.rb'
47+
- 'spec/failing_spec_detector_spec.rb'
48+
- 'spec/spec_helper.rb'
49+
50+
# Offense count: 1
51+
# This cop supports unsafe autocorrection (--autocorrect-all).
52+
# Configuration parameters: EnforcedStyle.
53+
# SupportedStyles: literals, strict
54+
Style/MutableConstant:
55+
Exclude:
56+
- 'lib/failing_spec_detector/version.rb'

Gemfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
source "https://rubygems.org"
2-
1+
source 'https://rubygems.org'
32

43
# Specify your gem's dependencies in failing_spec_detector.gemspec
54
gemspec

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
require "bundler/gem_tasks"
2-
require "rspec/core/rake_task"
1+
require 'bundler/gem_tasks'
2+
require 'rspec/core/rake_task'
33
require 'rubocop/rake_task'
44

55
RSpec::Core::RakeTask.new(:spec)

bin/console

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env ruby
22

3-
require "bundler/setup"
4-
require "failing_spec_detector"
3+
require 'bundler/setup'
4+
require 'failing_spec_detector'
55

66
# You can add fixtures and/or initialization code here to make experimenting
77
# with your gem easier. You can also use a different console, if you like.
@@ -10,5 +10,5 @@ require "failing_spec_detector"
1010
# require "pry"
1111
# Pry.start
1212

13-
require "irb"
13+
require 'irb'
1414
IRB.start(__FILE__)

failing_spec_detector.gemspec

+19-18
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,45 @@
1-
2-
lib = File.expand_path("../lib", __FILE__)
1+
lib = File.expand_path('lib', __dir__)
32
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4-
require "failing_spec_detector/version"
3+
require 'failing_spec_detector/version'
54

65
Gem::Specification.new do |spec|
7-
spec.name = "failing_spec_detector"
6+
spec.name = 'failing_spec_detector'
87
spec.version = FailingSpecDetector::VERSION
9-
spec.authors = ["safa"]
10-
spec.email = ["[email protected]"]
8+
spec.authors = ['safa']
9+
spec.email = ['[email protected]']
1110

1211
spec.summary = 'A tool to detect failing specs and group them by error message'
1312
spec.description = <<~DESCRIPTION
1413
Automatic Failing spec detector.
1514
Introduces a custom rspec formatter to detect failing specs and group them by exception.
1615
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'
1919

2020
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
2121
# to allow pushing to a single host or delete this section to allow pushing to any host.
2222
if spec.respond_to?(:metadata)
2323

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'
2626
# spec.metadata["changelog_uri"] = "https://github.com/nebulab/failing_spec_detector"
2727
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.'
3030
end
3131

3232
# Specify which files should be added to the gem when it is released.
3333
# 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
3535
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
3636
end
37-
spec.bindir = "exe"
37+
spec.bindir = 'exe'
3838
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
39-
spec.require_paths = ["lib"]
39+
spec.require_paths = ['lib']
4040

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'
4445
end

spec/failing_spec_detector/failing_spec_formatter_spec.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
let(:examples) { [failed_notification1, failed_notification2, failed_notification3] }
1818
let(:expected_exceptions) { [failed_notification1.exception.to_s, failed_notification3.exception.to_s] }
19-
let(:failed_notification1) { ::RSpec::Core::Notifications::ExampleNotification.for(failed_example1) }
20-
let(:failed_notification2) { ::RSpec::Core::Notifications::ExampleNotification.for(failed_example2) }
21-
let(:failed_notification3) { ::RSpec::Core::Notifications::ExampleNotification.for(failed_example3) }
19+
let(:failed_notification1) { RSpec::Core::Notifications::ExampleNotification.for(failed_example1) }
20+
let(:failed_notification2) { RSpec::Core::Notifications::ExampleNotification.for(failed_example2) }
21+
let(:failed_notification3) { RSpec::Core::Notifications::ExampleNotification.for(failed_example3) }
2222
let(:failed_example1) do
23-
exception = ::RuntimeError.new('Test Error 1')
23+
exception = RuntimeError.new('Test Error 1')
2424
exception.set_backtrace ["/spec/one_spec.rb:11:in `some_method'"]
2525

2626
example = self.class.example
@@ -33,7 +33,7 @@
3333
end
3434

3535
let(:failed_example2) do
36-
exception = ::RuntimeError.new('Test Error 1')
36+
exception = RuntimeError.new('Test Error 1')
3737
exception.set_backtrace ["/spec/two_spec.rb:20:in `some_method'"]
3838

3939
example = self.class.example
@@ -46,7 +46,7 @@
4646
end
4747

4848
let(:failed_example3) do
49-
exception = ::RuntimeError.new('Test Error 2')
49+
exception = RuntimeError.new('Test Error 2')
5050
exception.set_backtrace ["/spec/three_spec.rb:4:in `some_method'"]
5151

5252
example = self.class.example

spec/failing_spec_detector_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
RSpec.describe FailingSpecDetector do
2-
it "has a version number" do
2+
it 'has a version number' do
33
expect(FailingSpecDetector::VERSION).not_to be nil
44
end
55
end

spec/spec_helper.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
require "bundler/setup"
2-
require "failing_spec_detector/failing_spec_formatter"
1+
require 'bundler/setup'
2+
require 'failing_spec_detector/failing_spec_formatter'
33
require 'fileutils'
44
require 'tempfile'
55

66
RSpec.configure do |config|
77
# Enable flags like --only-failures and --next-failure
8-
config.example_status_persistence_file_path = ".rspec_status"
8+
config.example_status_persistence_file_path = '.rspec_status'
99

1010
# Disable RSpec exposing methods globally on `Module` and `main`
1111
config.disable_monkey_patching!

0 commit comments

Comments
 (0)