Jens Ljungblad
Jens Ljungblad
I'm having some trouble with deeply nested form fields. It works fine when nesting only using `nested_fields_for` but if I add a regular `fields_for` in between, the generated `` template...
All config regarding how to render the forms are stored on the SimpleForm module. This makes it really difficult to render different kinds of forms, if I've understood the README...
## Is your feature request related to a problem? @philsturgeon asked me to open this after discussing on Slack. Implementing a security scheme with a custom schema type should technically...
Can we simplify Gemfile vs .gemspec when installing in an engine? It should at least be possible to automatically require all things specified in the .gemspec file. People not familiar...
Our partial overrides are still slow when you have a lot of records. We've discussed other ways to customize how data is presented. There's presenter objects, and there's what Administrate...
Take a good hard look at if extending modules is still preferable to inheriting from classes. The file resolver has been the cause of much pain. The reason we have...
While using instance variables for this is a Rails thing, we're not big fans of this. We're thinking about using locals instead, if possible. Currently we have all these methods...
In particular, clarify the roles of `resources_relation` and `resources`, perhaps with a rename. They were previously called `begin_of_association_chain` and `end_of_association_chain` which were a bit of a mouthful but perhaps more...
The template for generating a sample application requires a specific ruby version to be installed. This is because we use the template to generate the sandbox application that is deployed...
Can we extract sandbox deployment from the gem? Also, can we make it deploy the most recent version instead of having to specify it manually? Could we pass the version...