aboutsummaryrefslogtreecommitdiffstats
path: root/tasks
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2016-02-01 05:02:42 +1030
committerMatthew Draper <matthew@trebex.net>2016-02-01 05:02:48 +1030
commitca9603fc35d123d1c8490096dc0447a91f3e3c18 (patch)
treead4e5447995a27fa3c2d522210f146065420a7b4 /tasks
parentb7a6dc91bcba1382f05f0b510570be98a508f63c (diff)
parentcb040aa0e54b8659c895cff3bf7302716f2b81ed (diff)
downloadrails-ca9603fc35d123d1c8490096dc0447a91f3e3c18.tar.gz
rails-ca9603fc35d123d1c8490096dc0447a91f3e3c18.tar.bz2
rails-ca9603fc35d123d1c8490096dc0447a91f3e3c18.zip
Merge pull request #23369 from maclover7/actioncable-assets-redux
Action Cable Assets Compilation redux
Diffstat (limited to 'tasks')
-rw-r--r--tasks/release.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/release.rb b/tasks/release.rb
index c7704aa865..25ba91cb49 100644
--- a/tasks/release.rb
+++ b/tasks/release.rb
@@ -48,6 +48,7 @@ directory "pkg"
task gem => %w(update_versions pkg) do
cmd = ""
cmd << "cd #{framework} && " unless framework == "rails"
+ cmd << "bundle exec rake assets:compile && " if framework == "actioncable"
cmd << "gem build #{gemspec} && mv #{framework}-#{version}.gem #{root}/pkg/"
sh cmd
end