A plugin that removes <%…%> tags from .erb files

This commit is contained in:
Jannon 2012-04-23 19:26:46 -07:00
parent 544f6126a2
commit 0aaee99533

20
plugins/railsTemplate.js Normal file
View File

@ -0,0 +1,20 @@
/**
@overview Strips the rails template tags from a js.erb file
@module plugins/railsTemplate
@author Jannon Frank <jannon@jannon.net>
*/
exports.handlers = {
///
/// Remove rails tags from the source input (e.g. <% foo bar %>)
/// @param e
/// @param e.filename
/// @param e.source
///
beforeParse: function(e) {
if (e.filename.match(/\.erb$/)) {
e.source = e.source.replace(/<%.*%>/g, "");
}
}
};