Tobias L. Maier
Tobias L. Maier
It would be great if one could configure in then host file that he requires hmac authorized requests when downloading a file. Combined with #17 One could define two vhost...
A blank cell is currently interpreted as a string with 0 characters. This is why it is shown as `...,"",...` in the generated CSV. In some use-cases, a blank cell...
Another feature request. :) It would be great if a story I read alread on HN would be marked as read (for example grayed out) when I read the story....
Hi, I checked your docker image. It is a good starting point. Here are some thoughts * Use a standard ruby as base image. Yours is dated * (Consider to...
Amazon SNS does not allow to set an arbitrary from address. It must be confirmed and validated. But I would like to simply hit 'reply' to answer someone who wrote...
You merge in 2020 Pull Request #75. It would be really great to see a new release with that change. Thanks and best regards
https://github.com/mdeering/attribute_normalizer/blob/master/lib/attribute_normalizer/model_inclusions.rb#L51-L57 ``` ruby alias_method "old_#{attribute}=", "#{attribute}=" define_method "#{attribute}=" do |value| normalized_value = self.send(:"normalize_#{attribute}", value) self.send("old_#{attribute}=", normalized_value) end ``` `old_` is not a good naming scheme. Better use something like `attribute_without_attribute_normalizer`...
ImageSorcery only supports `-commands`, but there are also some `+commands`, like [`+repage`](http://www.imagemagick.org/script/command-line-options.php#repage) ``` ruby def convert_to_arguments(args) special_args = [:layer, :annotate] args.reject {|k, v| special_args.include?(k) }.map {|k, v| " -#{k} '#{v}'"}...
Currently, the gem is only available under the terms and conditions of GPL 3.0. This is quite restrictive, as one could not use the gem within a proprietary software. This...
After this has been merged, we could start resolving some of the issues identified - [ ] It would be great to run rubocop also as GitHub workflow. Contribution welcomed