Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Added an `enforce_utf8` hash option for `form_tag` method | Takayuki Matsubara | 2013-07-07 | 1 | -1/+3 | |
|/ | | | | | | | | | | | | | | | | | | Control to output a hidden input tag with name `utf8` without monkey patching Before: form_tag # => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>' After: form_tag # => '<form>..<input name="utf8" type="hidden" value="✓" />..</form>' form_tag({}, { :enforce_utf8 => false }) # => '<form>....</form>' | |||||
* | Remove the deprecated include_seconds argument from distance_of_time_in_words | Carlos Antonio da Silva | 2013-07-02 | 1 | -9/+1 | |
| | | | | Pass in an :include_seconds hash option to use this feature. | |||||
* | Remove `FormBuilder` deprecation warning about block argument and associated ↵ | Vipul A M | 2013-07-02 | 1 | -5/+1 | |
| | | | | tests | |||||
* | Clean the code a bit | Santiago Pastorino | 2013-06-29 | 2 | -2/+2 | |
| | ||||||
* | fetch value(s) from stringified options | Jon Rowe | 2013-06-29 | 2 | -2/+2 | |
| | ||||||
* | Remove passing the prompt to grouped_options_for_select as an argument, ↵ | kennyj | 2013-06-28 | 1 | -9/+2 | |
| | | | | because it was deprecated. | |||||
* | Fix documentation for grouped_collection_select [ci skip] | Artyom | 2013-06-27 | 1 | -1/+1 | |
| | ||||||
* | Refactor cache fragment handling with read/write methods | Carlos Antonio da Silva | 2013-06-25 | 1 | -6/+6 | |
| | ||||||
* | Move the write portion of fragment_for to its own method to allow for easier ↵ | Andrew Rove | 2013-06-25 | 1 | -10/+14 | |
| | | | | creation of custom cache methods. | |||||
* | Fix typo in docs. HABTM associations should use a pluralized name | mariozig | 2013-06-25 | 1 | -1/+1 | |
| | ||||||
* | Comment typo | Ryan Williams | 2013-06-25 | 1 | -2/+2 | |
| | ||||||
* | Bump up version, fix module name | Łukasz Strzałkowski | 2013-06-20 | 1 | -4/+4 | |
| | ||||||
* | Remove require to AP stuff that left | Łukasz Strzałkowski | 2013-06-20 | 2 | -2/+0 | |
| | ||||||
* | Move actionpack/lib/action_view* into actionview/lib | Piotr Sarnacki | 2013-06-20 | 96 | -2/+14624 | |
| | ||||||
* | Add bare actionview gem to the root directory | Piotr Sarnacki | 2013-06-20 | 2 | -0/+35 | |
This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack. |