aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2012-08-06 16:22:23 -0400
committerPrem Sichanugrist <s@sikachu.com>2012-08-06 16:45:10 -0400
commit02c9654b9bdcd10ebd2c2ad9c50bbdf578a9aae0 (patch)
treece47c9a0f6321881004ad92c77cdcea7ae30196e /actionpack/CHANGELOG.md
parent02d31841bcf317d79925ca82dcc1bbf9079dc659 (diff)
downloadrails-02c9654b9bdcd10ebd2c2ad9c50bbdf578a9aae0.tar.gz
rails-02c9654b9bdcd10ebd2c2ad9c50bbdf578a9aae0.tar.bz2
rails-02c9654b9bdcd10ebd2c2ad9c50bbdf578a9aae0.zip
Do not include application.js if it doesn't exists
Rails were including 'application.js' to the pack when using `javascript_include_tag :all` even there's no application.js in the public directory.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 4b4658a82b..236768227c 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 4.0.0 (unreleased) ##
+* `javascript_include_tag :all` will now not include `application.js` if the file does not exists. *Prem Sichanugrist*
+
* Send an empty response body when call `head` with status between 100 and 199, 204, 205 or 304.
*Armand du Plessis*