aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb
Commit message (Collapse)AuthorAgeFilesLines
* Refactor AssetUrlHelper to make it friendly for plugins and extensionsJoshua Peek2012-10-121-94/+0
| | | | | | | | Add asset_path/url helper for a consolidated entry point Expose compute_asset_path as a public API Expose compute_asset_host as a public API Move RAILS_ASSET_ID to its own module, AssetIdHelper Removed AV::AssetPaths
* Add asset_path and asset_url helpersJoshua Peek2012-10-121-1/+2
|
* Add missing require when helpers are used in isolationRafael Mendonça França2012-04-301-0/+1
|
* Allow asset tag helper methods to accept :digest => false option in order to ↵Santiago Pastorino2011-09-141-1/+1
| | | | completely avoid the digest generation.
* require 'thread' before using mutexJosé Valim2011-07-011-0/+1
|
* Rename AV::Helpers::AssetPaths to AV::AssetPaths to solve autoload mess.José Valim2011-06-211-2/+1
|
* fixed asset_paths when called from sprockets for relative_url_rootjacott2011-05-281-10/+1
|
* No need for a regexp here.José Valim2011-05-031-1/+2
|
* Actually add an abstract class, so it is easier to get rid of old asset ↵José Valim2011-04-191-108/+53
| | | | paths in the future.
* Let's use inheritance here, shall we?José Valim2011-04-191-4/+9
|
* Remove the ability for engines to serve assets from the public directory.José Valim2011-04-151-3/+0
|
* Fix Typos: remove several occurences of the theNicholas Rowe2011-02-171-1/+1
|
* changed asset_timestamps_cache to asset_ids_cache, added an rdoc comment to ↵Josh Kalderimis2010-11-161-15/+19
| | | | the new public api, and updated the railtie
* corrected the AV railtie to use the new home for cache_asset_timestamps, and ↵Josh Kalderimis2010-11-161-3/+46
| | | | merged asset id caching and asset paths together.
* reorganised the the common asset helpers module into a class and have it ↵Josh Kalderimis2010-11-161-0/+106
include the id caching module, this class is now shared from the view instance to the asset include tag helpers (js and css)