-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from copiousfreetime/maintenance-2024-05
Maintenance 2024 05
- Loading branch information
Showing
39 changed files
with
1,097 additions
and
762 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,24 @@ | ||
*.gem | ||
*.rbc | ||
*.log | ||
/.config/ | ||
/coverage/ | ||
/pkg/ | ||
/test/tmp/ | ||
/test/version_tmp/ | ||
/tmp/ | ||
/log/ | ||
|
||
# documentation | ||
/doc/ | ||
|
||
# editor | ||
*~ | ||
*.swo | ||
*.swp | ||
doc/ | ||
coverage/ | ||
pkg/ | ||
.rvmrc | ||
.DS_Store | ||
.gem | ||
.byebug_history | ||
vendor/ | ||
*.swo | ||
|
||
# environment normalization | ||
/.gem/ | ||
/.bundle/ | ||
/vendor/bundle/ | ||
/lib/bundler/man/ |
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,104 @@ | ||
require: | ||
- rubocop-md | ||
- rubocop-minitest | ||
- rubocop-packaging | ||
- rubocop-performance | ||
- rubocop-rake | ||
- rubocop-thread_safety | ||
|
||
AllCops: | ||
NewCops: enable | ||
Exclude: | ||
- 'coverage/**/*' | ||
- 'doc/**/*' | ||
- 'pkg/**/*' | ||
- 'tmp/**/*' | ||
- '*.gemspec' | ||
- 'vendor/bundle/**/*' | ||
|
||
Layout/ExtraSpacing: | ||
AllowBeforeTrailingComments: true | ||
|
||
Layout/LineLength: | ||
Max: 175 | ||
|
||
Layout/SpaceInsideHashLiteralBraces: | ||
EnforcedStyle: space | ||
|
||
Lint/DuplicateBranch: | ||
IgnoreLiteralBranches: true | ||
IgnoreConstantBranches: true | ||
|
||
Metrics/AbcSize: | ||
CountRepeatedAttributes: false | ||
Max: 25 | ||
Exclude: | ||
- 'spec/**/*' | ||
- 'tasks/**/*' | ||
|
||
Metrics/BlockLength: | ||
CountAsOne: | ||
- heredoc | ||
Max: 30 | ||
Exclude: | ||
- 'spec/**/*' | ||
- 'tasks/**/*' | ||
|
||
Metrics/ClassLength: | ||
Max: 175 | ||
CountAsOne: | ||
- heredoc | ||
- array | ||
|
||
Metrics/ModuleLength: | ||
Max: 175 | ||
CountAsOne: | ||
- heredoc | ||
- array | ||
|
||
Metrics/CyclomaticComplexity: | ||
Max: 10 | ||
|
||
Metrics/MethodLength: | ||
Max: 30 | ||
CountAsOne: | ||
- heredoc | ||
- array | ||
Exclude: | ||
- 'spec/**/*' | ||
|
||
Metrics/ParameterLists: | ||
CountKeywordArgs: false | ||
|
||
Naming/PredicateName: | ||
Enabled: false | ||
|
||
Style/Documentation: | ||
Exclude: | ||
- 'spec/**/*' | ||
|
||
Style/StringLiterals: | ||
Enabled: true | ||
EnforcedStyle: double_quotes | ||
ConsistentQuotesInMultiline: false | ||
|
||
Style/SafeNavigation: | ||
Enabled: false | ||
|
||
# this gem outputs to stderr on purpose | ||
Style/StderrPuts: | ||
Enabled: false | ||
|
||
Style/TernaryParentheses: | ||
EnforcedStyle: require_parentheses_when_complex | ||
|
||
Style/TrailingCommaInArrayLiteral: | ||
EnforcedStyleForMultiline: consistent_comma | ||
Style/TrailingCommaInHashLiteral: | ||
EnforcedStyleForMultiline: consistent_comma | ||
Style/TrivialAccessors: | ||
Exclude: | ||
- lib/launchy.rb | ||
|
||
ThreadSafety/InstanceVariableInClassMethod: | ||
Enabled: false |
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 |
---|---|---|
@@ -1 +1 @@ | ||
3.3.0 | ||
3.3.1 |
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 |
---|---|---|
@@ -1,4 +1,26 @@ | ||
# DO NOT EDIT - This file is automatically generated | ||
# Make changes to Manifest.txt and/or Rakefile and regenerate | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gemspec | ||
|
||
# gem "debug", "~> 1.0", require: false | ||
|
||
gem "minitest", "~> 5.11" | ||
gem "minitest-focus", "~> 1.2" | ||
gem "minitest-junit", "~> 1.0" | ||
|
||
gem "rake" | ||
gem "rdoc", "~> 6.3", require: false | ||
gem "reek", require: false | ||
|
||
gem "rubocop", "~> 1.63", require: false | ||
gem "rubocop-minitest", "~> 0.35", require: false | ||
gem "rubocop-packaging", "~> 0.5", require: false | ||
gem "rubocop-performance", "~> 1.21", require: false | ||
gem "rubocop-rake", "~> 0.6", require: false | ||
gem "rubocop-thread_safety", "~> 0.5", require: false | ||
|
||
gem "rubocop-md", "~> 1.2", require: false | ||
|
||
gem "simplecov", "~> 0.22", require: false |
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
File renamed without changes.
Oops, something went wrong.