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

Support for Ruby 3.3 #205

Merged
merged 9 commits into from
Jul 23, 2024
Merged

Commits on Jul 16, 2024

  1. Configuration menu
    Copy the full SHA
    f1794b2 View commit details
    Browse the repository at this point in the history
  2. fix error from rubocop 1.48

    error from said version of rubocop:
    RuboCop::ValidationError:
      Property AutoCorrect of cop FactoryBot/CreateList is supposed to be a boolean and contextual is not.
    
    version `1.61` of `rubocop` fixes that issue, allowing all tests to pass.
    
    found that solution in this issue:
    rubocop/rubocop-rspec#1916
    from rubocop-rspec, where they were experiencing the same
    error and updating rubocop to 1.61, solved the issue.
    However they don't appear to know the culprit of this.
    Geromendez135 committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    95b7a6f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9c879dc View commit details
    Browse the repository at this point in the history
  4. fix deprecation warning

    Warning: obsolete parameter `IgnoredMethods` (for `Style/BlockDelimiters`) found in config/rubocop-style.yml
    `IgnoredMethods` has been renamed to `AllowedMethods` and/or `AllowedPatterns`.
    
    parameter `IgnoredMethods` was deprecated in version
    `1.33.0` of `rubocop` in favor of `AllowedMethods`. See:
    https://github.com/rubocop/rubocop/blob/master/relnotes/v1.33.0.md?plain=1#L19
    Geromendez135 committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    0c794bb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3e84360 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. Configuration menu
    Copy the full SHA
    0749e36 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    d3b6074 View commit details
    Browse the repository at this point in the history
  2. drop support for Ruby 2.6

    Also require ruby 2.7 or higher
    Geromendez135 committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    188c691 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5a11e1a View commit details
    Browse the repository at this point in the history