aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
Commit message (Collapse)AuthorAgeFilesLines
...
* | | fix the typo [ci skip]Rajarshi Das2013-09-021-1/+1
|/ / | | | | fix the typo newstopics => new topics in action view cache helper
* | Improve CHANGELOG entry [ci skip]Rafael Mendonça França2013-08-271-4/+2
| |
* | Merge pull request #11768 from cloudspace/cache_template_loadingRafael Mendonça França2013-08-273-5/+24
|\ \ | | | | | | Only cache template digests if !config.cache_template_loading
| * | Only cache template digests if config.cache_template_loadingJosh Lauer2013-08-063-5/+24
| | | | | | | | | | | | | | | | | | since ActionView::Resolver.caching is set to the same value as config.cache_template_loading only cache template digests if config.cache_template_loading is not falsy fixes issues #10752 and #10791
* | | Move abstract's controller tests to AVŁukasz Strzałkowski2013-08-2521-0/+917
| | | | | | | | | | | | The ones that were actually testing AV functionality and should belong in there
* | | Move actionpack's controller testsŁukasz Strzałkowski2013-08-254-12/+12
| | |
* | | Load HTML in ActionView not ActionPackŁukasz Strzałkowski2013-08-251-0/+1
| | | | | | | | | | | | HTML Scanner is part of ActionView and it should be loaded along with it
* | | Move AP's capture tests to AVŁukasz Strzałkowski2013-08-251-0/+81
| | |
* | | Move remaining layouts tests to AVŁukasz Strzałkowski2013-08-2517-0/+288
| | |
* | | Add AP tests to runnerŁukasz Strzałkowski2013-08-251-1/+9
| | |
* | | Cleanup & reorganise rake tasks in AVŁukasz Strzałkowski2013-08-251-16/+13
| | |
* | | Split rendering tests between AP & AVŁukasz Strzałkowski2013-08-251-248/+13
| | | | | | | | | | | | All rendering test remain in AV. Head, ETag etc. test stay in AP
* | | Move render_test to AVŁukasz Strzałkowski2013-08-2592-0/+1722
| | |
* | | Fist stab on basic renderingŁukasz Strzałkowski2013-08-251-2/+0
| | |
* | | Add #rendered_format method to controllersŁukasz Strzałkowski2013-08-251-0/+4
| | |
* | | Add missing requires inside AVŁukasz Strzałkowski2013-08-254-1/+8
| | |
* | | Do not load AV inside APŁukasz Strzałkowski2013-08-252-0/+2
| | | | | | | | | | | | Move that part to AV railtie
* | | Add missing requireŁukasz Strzałkowski2013-08-251-0/+2
| | |
* | | Revert "Move setting content_type to AV"Łukasz Strzałkowski2013-08-252-3/+1
| | | | | | | | | | | | This reverts commit f4d602aff6cec80304b131ecfcc2676d0304f0cc.
* | | Move setting content_type to AVŁukasz Strzałkowski2013-08-252-1/+3
| | |
* | | Use concat to avoid allocating additional arrayŁukasz Strzałkowski2013-08-251-1/+1
| | |
* | | Pass args to render's super methodŁukasz Strzałkowski2013-08-251-1/+2
| | |
* | | Improve AV::Rendering docsŁukasz Strzałkowski2013-08-251-2/+8
| | |
* | | Include AV::Layouts before setting view_pathsŁukasz Strzałkowski2013-08-251-2/+2
| | |
* | | Load AV::Layout to AM::Base in railtiesŁukasz Strzałkowski2013-08-251-0/+6
| | |
* | | Don not require AC::CachingŁukasz Strzałkowski2013-08-251-1/+0
| | |
* | | Remove ApplicationController & RoutingTestHelpersŁukasz Strzałkowski2013-08-251-9/+0
| | |
* | | Remove unused ActionDispatch::RoutingVerbsŁukasz Strzałkowski2013-08-251-15/+1
| | |
* | | Remove unused in AV fixture-controllersŁukasz Strzałkowski2013-08-251-29/+0
| | |
* | | Remove view_assigns from AVŁukasz Strzałkowski2013-08-251-7/+0
| | | | | | | | | | | | It wasn't adding anything, just invoking super
* | | Load AV::Layouts dynamicly via railtiesŁukasz Strzałkowski2013-08-252-1/+3
| | |
* | | Code formatting & typo fixesŁukasz Strzałkowski2013-08-251-35/+35
| | |
* | | Remove abstract_controller load hooksŁukasz Strzałkowski2013-08-251-4/+0
| | |
* | | Move protected_instance_variables & view_assigns to AbstractControllerŁukasz Strzałkowski2013-08-251-15/+4
| | |
* | | Remove 'api plugin' from docsŁukasz Strzałkowski2013-08-251-3/+0
| | | | | | | | | | | | AbstractController::Rendering is module which defines thie api
* | | Create AbstractController::Rendering interfaceŁukasz Strzałkowski2013-08-251-17/+4
| | | | | | | | | | | | This interface should be use when implementing renderers.
* | | Fix eager_autoload for layoutsŁukasz Strzałkowski2013-08-251-1/+1
| | | | | | | | | | | | Name was singular, should be plural
* | | Fix AV tests, I18nProxy was moved to AVŁukasz Strzałkowski2013-08-251-1/+1
| | |
* | | Revert "Require only path_set && lookup_context instead of whole base"Łukasz Strzałkowski2013-08-251-2/+1
| | | | | | | | | | | | This reverts commit 77bb03df2ca3687b290e9fe77d21007642f0329c.
* | | Hook up AV::Rendering on AV intializationŁukasz Strzałkowski2013-08-251-1/+5
| | |
* | | Move layouts to AVŁukasz Strzałkowski2013-08-253-0/+431
| | |
* | | Move rendering from AP to AVŁukasz Strzałkowski2013-08-252-0/+187
| | |
* | | Require only path_set && lookup_context instead of whole baseŁukasz Strzałkowski2013-08-251-1/+2
| | |
* | | Move view_paths from AP to AVŁukasz Strzałkowski2013-08-255-0/+273
| |/ |/|
* | Merge branch 'master' of github.com:rails/docrailsVijay Dev2013-08-171-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: actionview/README.rdoc activerecord/lib/active_record/migration.rb guides/source/development_dependencies_install.md guides/source/getting_started.md
| * | Revert "Merge branch 'master' of github.com:rails/docrails"Vijay Dev2013-08-172-1/+3
| | | | | | | | | | | | | | | | | | | | | This reverts commit 70d6e16fbad75b89dd1798ed697e7732b8606fa3, reversing changes made to ea4db3bc078fb3093ecdddffdf4f2f4ff3e1e8f9. Seems to be a code merge done by mistake.
* | | RDoc tweaksXavier Noria2013-08-071-5/+10
| | |
* | | Remove privatizing of Fixnum#/ from assert_distance_of_time_in_wordsAlex Tambellini2013-08-051-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | MRI reimplemented Date in C so it doesn't hit this division anymore while JRuby still uses the old stdlib implementation of Date so it will always hit this. With this change the actionview date_helper_test.rb tests should pass on JRuby.
* | | Merge pull request #11743 from gaurish/tmp-magicGuillermo Iguaran2013-08-051-0/+0
|\ \ \ | |_|/ |/| | [Jruby] Make all tests in ActionView::TemplateDigestorTest green
| * | Add tmp dir in actionview/test/Gaurish Sharma2013-08-051-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | Missing tmp directory will cause the test to fail on JRuby. will commit adds tmp directory & 22 TemplateDigestorTests which were failing before are now green. Further Discussion on this can be seen at #11743