diff options
author | Matthew Draper <matthew@trebex.net> | 2016-02-01 05:02:42 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2016-02-01 05:02:48 +1030 |
commit | ca9603fc35d123d1c8490096dc0447a91f3e3c18 (patch) | |
tree | ad4e5447995a27fa3c2d522210f146065420a7b4 /tasks | |
parent | b7a6dc91bcba1382f05f0b510570be98a508f63c (diff) | |
parent | cb040aa0e54b8659c895cff3bf7302716f2b81ed (diff) | |
download | rails-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.rb | 1 |
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 |