Andrew Vit
Andrew Vit
If I've set a column default in my schema, populator won't set the attribute value and will try saving it as NULL. This causes errors when a column is not...
I'd like to have a class method such as `normalize_values` that does something like this: ``` input = {product_code: " ABC123 "} clean_input = Product.normalize_values(input) #=> {product_code: "ABC123"} Product.where(clean_input) ```...
When referencing ticket numbers using the `#123` syntax, the formatter will output the text: ``` redminemarkdownextraformatter1 ``` In the space where the link to the ticket should be.
When writing inline code as underscores_in_words the formatter captures these and adds italics for each underscore pair. The workaround is to make sure you use backticks around it, or indent...
**Is your feature request related to a problem? Please describe.** The `sanitize_sql` method signature is designed to receive an array with `["sql template", *values]` that it uses for quoting and...
I'd like to add a feature for merging searches like `search_parents.or(search_children)`. With #412 it becomes doable by setting up a shared context to handle the join aliases before building the...
When used in concern mixins, the class name that the association is included in may be declared dynamically, instead of a static string. This now only verifies that the `class_name:`...
The RFC allows for specifying length of duration as periods of either: - Exact times (hours, minutes, seconds) - Nominal times (days, weeks, months) The length of a day/week/month is...
Our implementation of iCal parsing is untested and lacking features. There exists a solid maintained [icalendar gem][icalendar] that could support conversion to/from .ics format for us. IceCube is useful for...
As a follow up to #79, I'm using this pattern successfully in my [schedule_attributes](https://github.com/avit/schedule_attributes): ``` ruby schedule.rrules = [ Rule.daily.month_of_year(11, 12, 1, 2, 3) ] schedule.exrules = [ Rule.daily.month_of_year(11).day_of_month(*1..14), Rule.daily.month_of_year(3).day_of_month(*16..31),...