rename handlebars helper to travis_handlebars

This commit is contained in:
Sven Fuchs 2012-10-13 01:51:08 +02:00
parent d2cbde2cfa
commit b2d0acbcf7
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ assets.update_version
output 'public/scripts'
input assets.scripts do
match '**/*.hbs' do
handlebars :precompile => assets.production?
travis_handlebars :precompile => assets.production?
concat 'templates.js'
end

View File

@ -3,7 +3,7 @@ require 'rake-pipeline/dsl'
module Travis
class Assets
module Helpers
def handlebars(*args, &block)
def travis_handlebars(*args, &block)
filter(Filters::Handlebars, *args, &block)
end