-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wrap likely ABQ network errors to more easily identify as coming from…
… ABQ connections. (#104) * Wrap likely ABQ network errors to more easily identify as coming from ABQ connections. * Fix socket opening for Ruby <3.0. * Remove resolv_timeout for Ruby 2.6 support. * Bump version 1.1.1 * Update test gemfiles.
- Loading branch information
Showing
14 changed files
with
88 additions
and
38 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 |
---|---|---|
|
@@ -24,3 +24,6 @@ RSpec/ExampleLength: | |
|
||
RSpec/MessageSpies: | ||
EnforcedStyle: receive | ||
|
||
RSpec/MultipleMemoizedHelpers: | ||
Max: 10 |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ GIT | |
PATH | ||
remote: .. | ||
specs: | ||
rspec-abq (1.1.0) | ||
rspec-abq (1.1.1) | ||
rspec-core (>= 3.5.0, < 3.13.0) | ||
|
||
GEM | ||
|
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,6 +1,6 @@ | ||
module RSpec | ||
module Abq | ||
# current version! | ||
VERSION = "1.1.0" | ||
VERSION = "1.1.1" | ||
end | ||
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 |
---|---|---|
@@ -1 +1 @@ | ||
43 | ||
46 |
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