-
- # See Rails::Configuration for more options
-end
-
-# Add new inflection rules using the following format
-# (all these examples are active by default):
-# Inflector.inflections do |inflect|
-# inflect.plural /^(ox)$/i, '\1en'
-# inflect.singular /^(ox)en/i, '\1'
-# inflect.irregular 'person', 'people'
-# inflect.uncountable %w( fish sheep )
-# end
-
-# Hack the AssetTagHelper to make asset tagging work better
-module ActionView
- module Helpers
- module AssetTagHelper
- private
- alias :old_compute_public_path :compute_public_path
-
- def compute_public_path(source, dir, ext)
- path = old_compute_public_path(source, dir, ext)
- if path =~ /(.+)\?(\d+)\??$/
- path = "#{$1}/#{$2}"
- end
- path
- end
- end
- end