Yogesh Khater
Yogesh Khater
Add benchmarks to understand when to define method explicitly, forward method with `def_delegator` or use `SimpleDelegator`.
As mentioned [here](http://www.kanzaki.com/docs/ical/rdate.html), `RDATE` can have value as DATE or [PERIOD](https://icalendar.org/iCalendar-RFC-5545/3-3-9-period-of-time.html). But currently, only DATE is supported. Basically, I want to allow addition of new recurrence dates (using `add_recurrence_time`) with...
Fixes #13 Note that this change doesn't remove `Cell or ::Cell` from cell's name, as it is being done in `controller_path`. I think `controller_path` is independent of cache key generation,...
Allow `:default` option on `property` to be accepted as static value or any callable. ```ruby property :album, default: "Spring" property :album, default: ->(represented:, **) { represented.default_album } ```
Below line assumes that any `end_event` apart from `End::Success` would make `Result` unsuccessful. https://github.com/trailblazer/trailblazer-operation/blob/ddceff65a63ff7a72aa93cde3e2752d0d20d2512/lib/trailblazer/operation/railway.rb#L15 But as any custom event wouldn't mean the result is a failure, is it possible to...
- Added `Trailblazer::Endpoint::Grape::Controller` to make `.endpoint`, `.directive` & `#endpoint` available in Grape classes - Added sample grape app via appraisal - TODO: Make inheritance between `Grape::API` classes work. They're not...
Use kwarg to extract option instead of mutating `options` in `unnest`. fixes https://github.com/apotonick/disposable/issues/81 I'll create regression test in reform as the effect doesn't apply to disposable.
ActiveModel has added support to pick errors for specific field using `full_messages_for` method. https://api.rubyonrails.org/classes/ActiveModel/Errors.html#method-i-full_messages_for SimpleForm seems to be using it to generate errors, but gives exception for reform's `errors` object....