Daniel Ma
Daniel Ma
Switch from `send :define_method` to `class_eval` for stubbed methods that would otherwise by handled by `method_missing` With the previous implementation, the block passed to `stub` is in scope during `define_method`,...
This is a big change, but I think it would make development a lot more pleasant. Similar to working with React in a browser context, there are a lot of...
Add `#deconstruct_keys` to `Expression::Base` and `Schedule` so that they can be used in pattern matches. In our products, we've been using `#to_h` for this, and it would be nice sugar...
Allow regular expressions with more than one match group, and concatenate them to create the final string. This is useful for me for finding nested resources with similar paths, and...