Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maint: fix nightly build #205

Merged
merged 4 commits into from
Aug 9, 2022
Merged

maint: fix nightly build #205

merged 4 commits into from
Aug 9, 2022

Conversation

vreynolds
Copy link
Contributor

Which problem is this PR solving?

Short description of the changes

  • webmock requires ruby 2.3+ since version 3.15

@vreynolds vreynolds requested a review from a team August 5, 2022 19:33
@vreynolds vreynolds self-assigned this Aug 5, 2022
@vreynolds vreynolds added type: maintenance The necessary chores to keep the dust off. version: no bump A PR with maintenance or doc changes that aren't included in a release. labels Aug 5, 2022
Copy link
Contributor

@MikeGoldsmith MikeGoldsmith left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

euphoria

Copy link
Member

@robbkidd robbkidd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Clear the jam.

It's been clogged for days.

@@ -52,5 +52,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "rubocop-performance", "< 1.3.0"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "simplecov-console"
spec.add_development_dependency "webmock"
webmock_version = RUBY_VERSION < "2.3.0" ? "< 3.15.0" : nil
spec.add_development_dependency "webmock", webmock_version
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It only makes my brain itch a little bit. I might offer the more verbose rendition of this because ternaries make my eyes cross sometimes:

if RUBY_VERSION < "2.3.0"
  spec.add_development_dependency "webmock", "< 3.15.0"
else
  spec.add_development_dependency "webmock"
end

But my brain itches are not blockers.

@vreynolds vreynolds merged commit b77a983 into main Aug 9, 2022
@vreynolds vreynolds deleted the vera.fix-webmock branch August 9, 2022 01:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: maintenance The necessary chores to keep the dust off. version: no bump A PR with maintenance or doc changes that aren't included in a release.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants