aboutsummaryrefslogtreecommitdiffstats
path: root/lib/templates/installer.rb
blob: 44769c5193801594be40061629903c962eba24af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
say "Copying actiontext.css to app/assets/stylesheets"
copy_file "#{__dir__}/actiontext.css", "app/assets/stylesheets/actiontext.css"

say "Copying fixtures to test/fixtures/action_text/rich_texts.yml"
copy_file "#{__dir__}/fixtures.yml", "test/fixtures/action_text/rich_texts.yml"

# FIXME: Replace with release version on release
say "Installing JavaScript dependency"
run "yarn add https://github.com/basecamp/actiontext"

APPLICATION_PATH_PATH = "app/javascript/packs/application.js"

if File.exists?(APPLICATION_PATH_PATH) && File.read(APPLICATION_PATH_PATH) !~ /import "actiontext"/
  say "Adding import to default JavaScript pack"
  append_to_file APPLICATION_PATH_PATH, <<-EOS
import "actiontext"
EOS
end