-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing args expansion for Ruby 3.0.0 (#32)
* Fixing args expansion for Ruby 3.0.0 * Rubocop changes
- Loading branch information
Showing
46 changed files
with
500 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
# This configuration was generated by | ||
# `rubocop --auto-gen-config` | ||
# on 2021-02-12 15:04:35 UTC using RuboCop version 1.9.1. | ||
# The point is for the user to remove these configuration records | ||
# one by one as the offenses are removed from the code base. | ||
# Note that changes in the inspected code, or installation of new | ||
# versions of RuboCop, may require this file to be generated again. | ||
|
||
# Offense count: 6 | ||
RSpec/AnyInstance: | ||
Exclude: | ||
- 'spec/sym/app/cli_spec.rb' | ||
- 'spec/sym/app/password/providers_spec.rb' | ||
|
||
# Offense count: 97 | ||
# Configuration parameters: Prefixes. | ||
# Prefixes: when, with, without | ||
RSpec/ContextWording: | ||
Enabled: false | ||
|
||
# Offense count: 5 | ||
# Configuration parameters: Max. | ||
RSpec/ExampleLength: | ||
Exclude: | ||
- 'spec/sym/app/cli_spec.rb' | ||
- 'spec/sym/app/commands_spec.rb' | ||
- 'spec/sym/app/input/handler_spec.rb' | ||
- 'spec/sym/app/password/cache_spec.rb' | ||
- 'spec/sym/sym_spec.rb' | ||
|
||
# Offense count: 20 | ||
RSpec/ExpectInHook: | ||
Exclude: | ||
- 'spec/sym/app/cli_spec.rb' | ||
- 'spec/sym/app/commands/print_key_spec.rb' | ||
- 'spec/sym/app/password/providers_spec.rb' | ||
- 'spec/sym/app/private_key/detector_spec.rb' | ||
- 'spec/sym/app/private_key/handler_spec.rb' | ||
- 'spec/sym/application_spec.rb' | ||
- 'spec/sym/magic_file_spec.rb' | ||
|
||
# Offense count: 11 | ||
RSpec/LeakyConstantDeclaration: | ||
Exclude: | ||
- 'spec/integration/sym_cli_spec.rb' | ||
- 'spec/support/contexts.rb' | ||
- 'spec/sym/app/cli_spec.rb' | ||
- 'spec/sym/app/keychain_spec.rb' | ||
|
||
# Offense count: 1 | ||
RSpec/LetSetup: | ||
Exclude: | ||
- 'spec/sym/app/cli_spec.rb' | ||
|
||
# Offense count: 20 | ||
# Configuration parameters: . | ||
# SupportedStyles: have_received, receive | ||
RSpec/MessageSpies: | ||
EnforcedStyle: receive | ||
|
||
# Offense count: 36 | ||
RSpec/MultipleExpectations: | ||
Max: 6 | ||
|
||
# Offense count: 14 | ||
# Configuration parameters: AllowSubject. | ||
RSpec/MultipleMemoizedHelpers: | ||
Max: 9 | ||
|
||
# Offense count: 11 | ||
# Configuration parameters: IgnoreSharedExamples. | ||
RSpec/NamedSubject: | ||
Exclude: | ||
- 'spec/sym/app/commands_spec.rb' | ||
- 'spec/sym/app/password/providers_spec.rb' | ||
|
||
# Offense count: 10 | ||
RSpec/NestedGroups: | ||
Max: 6 | ||
|
||
# Offense count: 1 | ||
RSpec/OverwritingSetup: | ||
Exclude: | ||
- 'spec/sym/app/commands/generate_key_spec.rb' | ||
|
||
# Offense count: 12 | ||
RSpec/RepeatedDescription: | ||
Exclude: | ||
- 'spec/sym/app/commands_spec.rb' | ||
- 'spec/sym/app/password/providers_spec.rb' | ||
|
||
# Offense count: 2 | ||
RSpec/RepeatedExampleGroupDescription: | ||
Exclude: | ||
- 'spec/sym/app/password/providers_spec.rb' | ||
|
||
# Offense count: 2 | ||
RSpec/ScatteredSetup: | ||
Exclude: | ||
- 'spec/integration/sym_cli_spec.rb' | ||
|
||
# Offense count: 10 | ||
RSpec/StubbedMock: | ||
Exclude: | ||
- 'spec/support/contexts.rb' | ||
- 'spec/sym/app/cli_spec.rb' | ||
- 'spec/sym/app/commands/print_key_spec.rb' | ||
- 'spec/sym/app/input/handler_spec.rb' | ||
- 'spec/sym/app/private_key/detector_spec.rb' | ||
- 'spec/sym/application_spec.rb' | ||
|
||
# Offense count: 4 | ||
Rake/Desc: | ||
Exclude: | ||
- 'Rakefile' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.