-
Notifications
You must be signed in to change notification settings - Fork 0
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 #11 from lumoslabs/self_refactor
Refactor
- Loading branch information
Showing
6 changed files
with
62 additions
and
41 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,14 +1,29 @@ | ||
Metrics/AbcSize: | ||
Max: 20 | ||
Max: 27 | ||
|
||
Metrics/CyclomaticComplexity: | ||
Max: 7 | ||
|
||
Metrics/LineLength: | ||
Max: 140 | ||
|
||
Metrics/MethodLength: | ||
Max: 23 | ||
|
||
Metrics/PerceivedComplexity: | ||
Max: 9 | ||
|
||
Style/Documentation: | ||
Enabled: false | ||
Enabled: false | ||
|
||
Style/ModuleFunction: | ||
Enabled: false | ||
|
||
Style/RaiseArgs: | ||
Enabled: false | ||
Enabled: false | ||
|
||
Style/SpaceAroundOperators: | ||
Enabled: false | ||
|
||
Style/SignalException: | ||
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
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,3 +1,3 @@ | ||
module Pester | ||
VERSION = '0.2.0' | ||
VERSION = '1.0.0' | ||
end |
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 |
---|---|---|
|
@@ -10,9 +10,9 @@ Gem::Specification.new do |spec| | |
spec.email = ['[email protected]'] | ||
spec.summary = 'Common block-based retry for external calls.' | ||
spec.description = <<-EOD | ||
|We found ourselves constantly wrapping network-facing calls with all kinds of bespoke, | ||
| copied, and rewritten retry logic. This gem is an attempt to unify common behaviors, | ||
| like simple retry, retry with linear backoff, and retry with exponential backoff. | ||
We found ourselves constantly wrapping network-facing calls with all kinds of bespoke, | ||
copied, and rewritten retry logic. This gem is an attempt to unify common behaviors, | ||
like simple retry, retry with linear backoff, and retry with exponential backoff. | ||
EOD | ||
spec.homepage = 'https://github.com/lumoslabs/pester' | ||
spec.license = 'MIT' | ||
|
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