aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/testing
Commit message (Collapse)AuthorAgeFilesLines
* [action_view] added custom patterns to template resolverChris Kowalik2011-03-201-6/+6
|
* #948 template_inheritanceartemave2010-12-261-1/+5
|
* Resolvers now consider timestamps.José Valim2010-10-101-2/+3
| | | | | | | | | | | Before this patch, every request in development caused the template to be compiled, regardless if it was updated in the filesystem or not. This patch now checks the timestamp and only compiles it again if any change was done. While this probably won't show any difference for current setups, but it will be useful for asset template handlers (like SASS), as compiling their templates is slower than ERb, Haml, etc.
* Allow cache to be temporarily disabled through lookup_context.José Valim2010-10-071-3/+5
|
* Get rid of ruby warnings in Resolvers. Move a few methods up to the abstract ↵José Valim2010-10-071-2/+2
| | | | class.
* Don't shadow outer local variables.Emilio Tagua2010-09-271-4/+4
|
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-1/+1
| | | | 's/[ \t]*$//' -i {} \;)
* add NullResolverDavid Chelimsky2010-05-021-0/+8
| | | | | | [#4523 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* move FixtureResolver to a file that is accessible outside Rails' own testsDavid Chelimsky2010-05-021-0/+35
[#4522 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>