aboutsummaryrefslogtreecommitdiffstats
path: root/actiontext/lib/templates/installer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actiontext/lib/templates/installer.rb')
-rw-r--r--actiontext/lib/templates/installer.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/actiontext/lib/templates/installer.rb b/actiontext/lib/templates/installer.rb
new file mode 100644
index 0000000000..ee5a5af75b
--- /dev/null
+++ b/actiontext/lib/templates/installer.rb
@@ -0,0 +1,22 @@
+say "Copying actiontext.scss to app/assets/stylesheets"
+copy_file "#{__dir__}/actiontext.scss", "app/assets/stylesheets/actiontext.scss"
+
+say "Copying fixtures to test/fixtures/action_text/rich_texts.yml"
+copy_file "#{__dir__}/fixtures.yml", "test/fixtures/action_text/rich_texts.yml"
+
+say "Copying blob rendering partial to app/views/active_storage/blobs/_blob.html.erb"
+copy_file "#{__dir__}/../../app/views/active_storage/blobs/_blob.html.erb",
+ "app/views/active_storage/blobs/_blob.html.erb"
+
+# FIXME: Replace with release version on release
+say "Installing JavaScript dependency"
+run "yarn add https://github.com/rails/actiontext"
+
+APPLICATION_PACK_PATH = "app/javascript/packs/application.js"
+
+if File.exists?(APPLICATION_PACK_PATH) && File.read(APPLICATION_PACK_PATH) !~ /import "actiontext"/
+ say "Adding import to default JavaScript pack"
+ append_to_file APPLICATION_PACK_PATH, <<-EOS
+import "actiontext"
+EOS
+end