aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/sprockets/helpers
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-01-03 17:03:45 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-01-03 17:08:10 -0200
commit439d3407eaef1f1b3abc94c766dedac220e59785 (patch)
treeeb0223b6058a3d52c474ab8bb05fd5445ab6cc23 /actionpack/lib/sprockets/helpers
parent41be0fc3df4cc080df912ae87bd1c8503f2b348d (diff)
downloadrails-439d3407eaef1f1b3abc94c766dedac220e59785.tar.gz
rails-439d3407eaef1f1b3abc94c766dedac220e59785.tar.bz2
rails-439d3407eaef1f1b3abc94c766dedac220e59785.zip
Add font_path helper method
Diffstat (limited to 'actionpack/lib/sprockets/helpers')
-rw-r--r--actionpack/lib/sprockets/helpers/rails_helper.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/lib/sprockets/helpers/rails_helper.rb b/actionpack/lib/sprockets/helpers/rails_helper.rb
index c34b3f6f26..177f7f6747 100644
--- a/actionpack/lib/sprockets/helpers/rails_helper.rb
+++ b/actionpack/lib/sprockets/helpers/rails_helper.rb
@@ -63,6 +63,11 @@ module Sprockets
end
alias_method :path_to_image, :image_path # aliased to avoid conflicts with an image_path named route
+ def font_path(source)
+ path_to_asset(source)
+ end
+ alias_method :path_to_font, :font_path # aliased to avoid conflicts with an font_path named route
+
def javascript_path(source)
path_to_asset(source)
end