-
-
Notifications
You must be signed in to change notification settings - Fork 289
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
add ruby 3.4 and rails 7.2 to ci #805
Conversation
WalkthroughThe changes update the CI workflow configuration in Changes
Suggested reviewers
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
gemfiles/rails_7_2.gemfile (1)
18-18
: LGTM with a style suggestion.The gemspec configuration is correct. Consider using single quotes throughout the file to align with Ruby style conventions.
-source "https://rubygems.org" +source 'https://rubygems.org' group :test do - gem "activejob", "~> 7.2" - gem "httparty" - gem "multi_xml" - gem "simplecov" + gem 'activejob', '~> 7.2' + gem 'httparty' + gem 'multi_xml' + gem 'simplecov' end group :development do - gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" - gem "pry-byebug" - gem "rubocop" + gem 'appraisal', git: 'https://github.com/thoughtbot/appraisal.git' + gem 'pry-byebug' + gem 'rubocop' end -gemspec path: "../" +gemspec path: '../'🧰 Tools
🪛 RuboCop (1.69.1)
[convention] 18-18: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
.github/workflows/specs.yml
(3 hunks)gemfiles/rails_7_2.gemfile
(1 hunks)
🧰 Additional context used
🪛 RuboCop (1.69.1)
gemfiles/rails_7_2.gemfile
[convention] 3-3: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 6-6: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 6-6: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 7-7: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 8-8: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 9-9: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 13-13: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 13-13: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 14-14: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 15-15: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 18-18: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
🔇 Additional comments (5)
.github/workflows/specs.yml (3)
12-12
: LGTM! Ruby 3.4 matrix update looks good.The addition of Ruby 3.4 to the test matrix ensures compatibility with the latest stable Ruby version.
44-44
: LGTM! Rails 7.2 matrix update looks good.The addition of Rails 7.2 to the test matrix ensures compatibility with the latest stable Rails version.
55-57
: LGTM! Rails 7.2 configuration looks good.The configuration follows the established pattern and uses appropriate Ruby version and gemfile path.
gemfiles/rails_7_2.gemfile (2)
5-10
: LGTM! Test dependencies look good.The test group includes all necessary dependencies with appropriate version constraints.
🧰 Tools
🪛 RuboCop (1.69.1)
[convention] 6-6: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 6-6: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 7-7: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 8-8: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 9-9: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
12-16
: LGTM! Development dependencies look good.The development group includes standard development tools and correctly sources Appraisal from Git.
🧰 Tools
🪛 RuboCop (1.69.1)
[convention] 13-13: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 13-13: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 14-14: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
[convention] 15-15: Prefer single-quoted strings when you don't need string interpolation or special symbols.
(Style/StringLiterals)
close #784
Summary by CodeRabbit
These updates boost our system’s compatibility and development quality. The testing process now includes support for the latest Ruby and Rails releases, helping ensure smoother performance and enhanced stability.