projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19f6e67
)
Remove asset tag monkey patch as it is no longer having any effect
author
Tom Hughes
<tom@compton.nu>
Fri, 26 Jun 2009 13:08:36 +0000
(13:08 +0000)
committer
Tom Hughes
<tom@compton.nu>
Fri, 26 Jun 2009 13:08:36 +0000
(13:08 +0000)
due to rails changes.
config/initializers/asset_tag_helper.rb
[deleted file]
patch
|
blob
|
history
diff --git
a/config/initializers/asset_tag_helper.rb
b/config/initializers/asset_tag_helper.rb
deleted file mode 100644
(file)
index
a5f2e5a
..0000000
--- a/
config/initializers/asset_tag_helper.rb
+++ /dev/null
@@
-1,10
+0,0 @@
-module ActionView
- module Helpers
- module AssetTagHelper
- def rewrite_asset_path!(source)
- asset_id = rails_asset_id(source)
- source << "/#{asset_id}" if !asset_id.blank?
- end
- end
- end
-end