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")
```
This commit is contained in:
Vinicius Brasil 2019-01-27 22:30:17 -02:00 committed by GitHub
parent 1d26c86b86
commit 95e00befbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,7 +26,7 @@
line = %[require("#{name}")]
unless APPLICATION_PACK_PATH.read.include? line
say "Adding #{name} to #{APPLICATION_PACK_PATH}"
append_to_file APPLICATION_PACK_PATH, "#{line}\n"
append_to_file APPLICATION_PACK_PATH, "\n#{line}"
end
end
end