Markus
Markus
(For reference what I wrote in #76) I don't think precompilation is possible though since MJML must work on the complete body – it cannot compile partials for example, because...
I think this issue fixed in the latest versions, since the `Mjml::BIN` constant is gone and the version check happens only after initialization. Changing the binary is possible now with:...
I think for Rails to return indexed errors you need to enable it either globally ... ```rb Rails.application.config.active_record.index_nested_attribute_errors = true ``` ... or directly in the model's association ... ```rb...
I too think that the Rails' syntax is awkward, but maybe it could be still added to be consistent with Rails. Anyway, for me it would be enough to get...
I'm at `2.2.4` currently, will just try out `2.3.0.rc1` (which seems to be the latest version at rubygems) and report back.
@apotonick I just checked out master from github to have the latest verisions of `reform` and `reform-rails`. I have this form: ```rb property :first_name validates :first_name, presence: true collection :addresses,...
Noticed this, too. Would be great if it could be fixed!
:+1: 28.0.2 really did break creating shares for us, definitely a regression in a minor version upgrade
(Not a solution, but just want to give the hint that – if I am not mistaken – `validates :name, presence: true` will validate depending on the current `::I18n.locale` which...