Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add line break to Action Text installation outputs | Vinicius Brasil | 2019-01-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | The Action Text installations appends `require("trix")` to the application.js file. The problem is that there isn't a line break in the beginning of the installation output, leading to syntax errors, e.g.: ``` import './application.scss'require("trix") ``` This commit moves the line break from the end to the beginning of the output, fixing it to: ``` import './application.scss' require("trix") ``` | ||||
* | Preparing for 6.0.0.beta1 release | Rafael Mendonça França | 2019-01-18 | 1 | -1/+1 |
| | |||||
* | Tidy up action_text:install task | Javan Makhmali | 2019-01-17 | 1 | -9/+20 |
| | | | | Automate installing the appropriate packages with yarn and appending them to the default application.js pack. | ||||
* | Move all npm packages to @rails scope | Javan Makhmali | 2019-01-10 | 1 | -4/+3 |
| | | | | Fixes #33083 | ||||
* | Enable `Lint/DeprecatedClassMethods` cop to avoid using deprecated methods | yuuji.yaginuma | 2019-01-09 | 1 | -1/+1 |
| | |||||
* | Reset ActionText::Content.renderer before and after each request | George Claghorn | 2019-01-05 | 1 | -3/+6 |
| | |||||
* | Import Action Text | George Claghorn | 2019-01-04 | 24 | -0/+1075 |