Carsten Block
Carsten Block
This is a wonderful boilerplate template! Thanks a lot! May I suggest to add a rename script similar to https://github.com/mirego/elixir-boilerplate/blob/master/boilerplate-setup.sh That would make the setup even easier!
### What Happened? Printing an E-Mail using the "..." Buttons in the E-Mail Header fails. --> Print to file does not produce a PDF --> Print to regular printer does...
Hi! I'm just wondering how I might access predefined exomter reports. I tried to add a `predefined` section to the config but that didn't work: ``` # Configure Elixometer Instrumentation...
For example a boolean column`is_company` is defined, which sets the column's content to be truthy or falsy: ``` ruby #map salutation column to :is_company column :is_company, 1 do |value| value.downcase...
This method simply removes a tag from all selected records: ``` ruby Foo.delete_tags('tag name') Foo.delete_colors('tag name') Foo.where(name: 'some name').delete_tags('tag name') ```
This method should simply rename a tag: `Foo.rename_tags('old tag name', 'new tag name')` And it should work with scoped queries too: ``` ruby Foo.where(name: 'test').rename_tags('old tag name', 'new tag name')...
This should return an array of arrays of the form: `[ ['tag_name_1',12], ['tag name 2', 1], [...] ]` It should work within scoped queries ``` Ruby Foo.all_tags_counts Foo.where(name: 'test').all_tags_counts Foo.all_colors_counts...
Hi! Thanks for this nice gem. I just added a small feature that allows one to specify another model field as additional discriminator for the sequence. The value of the...
Fix small typos
I just came across this very nice library and noticed two failing tests as well as a compilation error with `ssl_verify_fun` test dependency. I fixed both issues with this PR...