rails/actiontext/lib
Vinicius Brasil 95e00befbc
Add line break to Action Text installation outputs
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")
```
2019-01-27 22:30:17 -02:00
..
action_text Preparing for 6.0.0.beta1 release 2019-01-18 15:42:12 -05:00
tasks Import Action Text 2019-01-04 22:22:49 -05:00
templates Add line break to Action Text installation outputs 2019-01-27 22:30:17 -02:00
action_text.rb Import Action Text 2019-01-04 22:22:49 -05:00