Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #31 from albertoalmagro/remove-variable-shadowing | George Claghorn | 2018-10-13 | 1 | -8/+8 |
|\ | | | | | Rename shadowed variable | ||||
| * | Rename shadowed variable | Alberto Almagro | 2018-10-13 | 1 | -8/+8 |
| | | | | | | | | This commit renames shadowed variable `attributes`. | ||||
* | | Remove unused **options | Alberto Almagro | 2018-10-13 | 1 | -3/+3 |
|/ | | | | | | I'm not sure if this is going to be used in the future or not, but for the time being we shouldn't maintain parameters that we aren't using. We can always add them later when needed. | ||||
* | Privatize constants | Alberto Almagro | 2018-10-11 | 1 | -4/+5 |
| | | | | | This constants meant to be private but `private_constant` was missing, this commit makes them fully private by adding `private_constant`. | ||||
* | Add frozen_string_literal: true | Alberto Almagro | 2018-10-08 | 17 | -0/+34 |
| | | | | Adds frozen_string_literal: true comment on top of all currently existing files | ||||
* | Fix minor typo in code comment | ven | 2018-10-06 | 1 | -1/+1 |
| | |||||
* | Fix has_rich_text with `:body` keywords error. (#16) | Jason Lee | 2018-10-05 | 1 | -1/+1 |
| | |||||
* | Delegate string methods to content | Javan Makhmali | 2018-10-04 | 1 | -1/+1 |
| | | | | Closes #11 | ||||
* | Install Active Storage extension lazily | George Claghorn | 2018-10-03 | 1 | -3/+1 |
| | | | | Avoid eagerly loading Active Record during app boot. Reinstall the extension when ActiveStorage::Blob is reloaded in dev. | ||||
* | Move attachment rendering to a helper | Javan Makhmali | 2018-10-03 | 2 | -18/+3 |
| | | | | Fixes #5 | ||||
* | WIP: Image gallery support | Javan Makhmali | 2018-10-03 | 2 | -7/+120 |
| | |||||
* | Add support for "presentation" gallery attribute | Javan Makhmali | 2018-10-03 | 2 | -4/+5 |
| | |||||
* | Fill in Attachable rich text attributes | Javan Makhmali | 2018-10-03 | 1 | -1/+17 |
| | |||||
* | Fix <h1> plain text conversion | Javan Makhmali | 2018-10-02 | 1 | -1/+1 |
| | | | | Fixes #4 | ||||
* | active → action | Javan Makhmali | 2018-10-02 | 1 | -1/+1 |
| | |||||
* | Never mind on allowing blank | David Heinemeier Hansson | 2018-09-12 | 1 | -12/+1 |
| | | | | More hassle than its worth. Just account for the fact that rich text can be blank instead, but continue to create the record. | ||||
* | Ensure blank rich text records aren't saved or required | David Heinemeier Hansson | 2018-09-12 | 2 | -2/+15 |
| | |||||
* | #render already provides something html_safe | David Heinemeier Hansson | 2018-06-07 | 1 | -1/+1 |
| | |||||
* | Move the escaping choice to the layout | David Heinemeier Hansson | 2018-06-07 | 1 | -1/+1 |
| | |||||
* | Some basic documentation for the has_rich_text macro | David Heinemeier Hansson | 2018-06-07 | 1 | -0/+18 |
| | |||||
* | Add scope to preload embeds as well | David Heinemeier Hansson | 2018-06-07 | 1 | -0/+1 |
| | |||||
* | Provide to_html rendering within a layout and use that as the to_s default | David Heinemeier Hansson | 2018-06-07 | 1 | -1/+5 |
| | | | | | I like the idea of thinking about the rendering as happening within a layout. Since that’s basically what this wrapper is. Thoughts @javan? | ||||
* | By default, coercing to a string should produce a formatted output | David Heinemeier Hansson | 2018-06-05 | 1 | -1/+1 |
| | | | | | | | Open to other ways of doing this, but didn’t want to require embedding the trix-content class inside the actual HTML that Trix persists. So this seemed like a reasonable alternative. Thoughts @javan or @sstephenson? | ||||
* | Destroy rich text dependents | David Heinemeier Hansson | 2018-05-29 | 1 | -1/+1 |
| | |||||
* | Auto-save changes to rich text model | David Heinemeier Hansson | 2018-05-28 | 1 | -12/+2 |
| | |||||
* | Lazy initialization of rich text model | David Heinemeier Hansson | 2018-05-28 | 1 | -1/+1 |
| | |||||
* | WIP | David Heinemeier Hansson | 2018-04-13 | 1 | -7/+24 |
| | |||||
* | Rename from Active Text to Action Text | David Heinemeier Hansson | 2018-04-13 | 17 | -0/+744 |
This is more like Action View than Active Model. |