-
Notifications
You must be signed in to change notification settings - Fork 44
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
Remove support for the standardrb gems from the regular rubocop channels #357
Comments
@cquinones100, @RubyBrewsday, what do you think? This should make it possible to use standard from rubocop if you want to, but not be blocked by standard if you don't use it. |
BrianHawley
added a commit
to BrianHawley/codeclimate-rubocop
that referenced
this issue
Jul 31, 2023
Ruby 2 is EOL, and can have trouble installnig on modern systems. - Updated ruby in .ruby-version and Dockerfile. - No need to install an old version of bundler in Dockerfile. - Removeed the standard gem (see codeclimate#357). - General bundle update. - Updated docs.
BrianHawley
added a commit
to BrianHawley/codeclimate-rubocop
that referenced
this issue
Jul 31, 2023
Ruby 2 is EOL, and can have trouble installnig on modern systems. - Updated ruby in .ruby-version and Dockerfile. - No need to install an old version of bundler in Dockerfile. - Removed the standard gem (see codeclimate#357). - General bundle update. - Updated docs.
BrianHawley
added a commit
to BrianHawley/codeclimate-rubocop
that referenced
this issue
Aug 24, 2023
Ruby 2 is EOL, and can have trouble installnig on modern systems. - Updated ruby in .ruby-version and Dockerfile. - No need to install an old version of bundler in Dockerfile. - Removed the standard gem (see codeclimate#357). - General bundle update. - Updated docs.
BrianHawley
added a commit
to BrianHawley/codeclimate-rubocop
that referenced
this issue
Aug 31, 2023
Ruby 2 is EOL, and can have trouble installnig on modern systems. - Updated ruby in .ruby-version and Dockerfile. - No need to install an old version of bundler in Dockerfile. - Removed the standard gem (see codeclimate#357). - General bundle update. - Updated docs.
BrianHawley
added a commit
to BrianHawley/codeclimate-rubocop
that referenced
this issue
Sep 22, 2023
Ruby 2 is EOL, and can have trouble installnig on modern systems. - Updated ruby in .ruby-version and Dockerfile. - No need to install an old version of bundler in Dockerfile. - Removed the standard gem (see codeclimate#357). - General bundle update. - Updated docs.
RubyBrewsday
pushed a commit
that referenced
this issue
Sep 25, 2023
Ruby 2 is EOL, and can have trouble installnig on modern systems. - Updated ruby in .ruby-version and Dockerfile. - No need to install an old version of bundler in Dockerfile. - Removed the standard gem (see #357). - General bundle update. - Updated docs.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The standard gems added in #351 are currently blocking rubocop updates, just by being referenced in the Gemfile:
I checked with the standard gem maintainers in standardrb/standard-performance#4 and it was made clear that the standard gems can't be updated at the same pace as the rubocop gems they reference, because every rubocop update requires standard to do critical evaluation of the new changes, and can have corresponding config file changes. So, understandably, they can't keep the same release cadence.
However, that means that people who don't use standard will be blocked from using the latest rubocop gems, just because the standard gems they aren't using will block them.
I gather from standardrb/standard#439 that:
Given all that, we have a couple options, which we might do both of:
That way we could remove standard from channel/beta and be able to update rubocop further.
The text was updated successfully, but these errors were encountered: