Yves Senn
Yves Senn
while running a migration we have access to the "old new" id-mapping table. ``` ruby mapping 'Country' do |context, value| {:country_id => context.definition('Countries').new_id_of(value)} end ``` It would be cool if...
I think we should bundle up the rake task to run the import.
This provides a way to work off all the jobs in the queue and exit afterwards. Closes #191.
I ran into a situation where `Auto Indent` results in a wrong indent. I could reduce the example code to the following: ``` ruby class Example private def attribute_and_value(attribute, value)...
We are currently serving images through the Rails stack. While they can be cached on the browser side it's still needless requests the stack shouldn't need to handle.
Currently the `UnknownFieldError` is raised under different circumstances. The name suggests, that the field was found but corner_stones does not know how to handle it: `don't know how to fill...
Currently `form#attributes` returns the full label text, which includes the "*" for required fields. This makes writing tests much harder since the field-names change when validations change. Our required text...
we need an extension for a table to allow pagination. The interface could look something like: - `next_page` navigate to the next page - `previous_page` navigate to the previous page...
we need an object to represent a page navigation. It should support the following protocol: - `open` navigate to the page - `items` list of all the possible navigation links