rbao/fieldable_form

View on GitHub
CHANGELOG.md

Summary

Maintainability
Test Coverage
Changelog
==========

v0.0.4 - 2013/04/04
---
* DEPENDENCY CHANGE: More strict on versions.

v0.0.3 - 2013/04/04
---
* Bug Fix: Fix spaces inside drop down items does not get displayed.
* Bug Fix: Fix when validating entry using `FieldableForm::EntryValidations` the error message does not use translation. Now it uses activerecord translation, ex. `activerecord.errors.messages.blank`.
* Refactor: Move all files to lib directory.
* DEPENDENCY CHANGE: Remove `rails`, use `activerecord` and `railties`.

v0.0.2 - 2013/03/21
---
* API CHANGE: Rename `FieldableForm::Validations` to `FieldableForm::EntryValidations`. Rename the method `#validate_fieldable_form` to `#validate_fieldable_form_entry`.
* API CHANGE: Rename `FieldableForm::AbstractField` to `FieldableForm::Field`.
* API CHANGE: Remove `FieldableForm::BaseForm`. You should implement this yourself a sample implementation can be found [Here](https://github.com/rbao/fieldable_form_example_app/blob/master/app/models/product_form.rb "Here"). The migration for this model is also removed, although no drop_table migration is added. However, you should rename the old `fieldable_forms` tables according to your model name.
* API CHANGE: `rails g fieldable_form:bootstrap` will no longer generate the model.
* DEPENDENCY CHANGE: Remove `jquery-rails` and `coffee-rails`, however if you plan to use the assets generated by `fieldable_form:bootstrap` you will still need to include those gem in your application.

v0.0.1 - 2013/03/16
---
* Initial release