Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ruby 2.7 deprecated automatic casting of a hash passed as the last argument of a method to keyword arguments. You must now use actual keyword arguments (`foo(bar: 'baz')` instead of `foo({bar: 'baz'})`) or cast the hash to keyword args using the double splat (`foo(**{bar: 'baz'})`). In preparation for upgrading to Ruby 3.0, we're implementing the new syntax for SAML error classes.
- Loading branch information