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

Pattern matching support for arguments #515

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Apr 2, 2024

  1. Pattern matching support for arguments

    Implement `Rake::TaskArguments#deconstruct_keys` for use in Ruby 3.1
    and up. This means in an idiomatic rake task we can use rightward
    assignment to say:
    
    ```
    task :get, %i[tenant id] do |_t, args|
      args => {tenant:, id:}
      ...
    end
    ```
    
    ... and omit the `.to_h` from `args`, raising `NoMatchingPatternError`
    if either of the two params is absent from the task args.
    rgarner committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    cbd2e35 View commit details
    Browse the repository at this point in the history