aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view.rb
Commit message (Collapse)AuthorAgeFilesLines
* Bump license years for 2018Yoshiyuki Hirano2017-12-311-1/+1
|
* Remove unused `MissingRequestError`yuuji.yaginuma2017-10-311-1/+0
| | | | `MissingRequestError` is no longer used since 1e2b0ce.
* [Action View] require_relative => requireAkira Matsuda2017-10-211-1/+1
| | | | This basically reverts c4d1a4efeec6f0b5b58222993aa0bec85a19b6a8
* Use frozen string literal in actionview/Kir Shatrov2017-07-241-0/+2
|
* [Action View] require => require_relativeAkira Matsuda2017-07-011-1/+1
|
* Define path with __dir__bogdanvlviv2017-05-231-1/+1
| | | | | | ".. with __dir__ we can restore order in the Universe." - by @fxn Related to 5b8738c2df003a96f0e490c43559747618d10f5f
* Bump license years for 2017Jon Moss2016-12-311-1/+1
| | | | | | | | Per https://www.timeanddate.com/counters/firstnewyear.html, it's already 2017 in a lot of places, so we should bump the Rails license years to 2017. [ci skip]
* applies new string literal convention in actionview/libXavier Noria2016-08-061-4/+4
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Update copyright notices to 2016 [ci skip]Rashmi Yadav2015-12-311-1/+1
|
* Update copyright notices to 2015 [ci skip]Arun Agrawal2014-12-311-1/+1
|
* Now only requiring Loofah in the places where it is needed.Timm2014-06-161-1/+0
|
* Fixed uninitialized constant ActionView::HTML error entered after recent git ↵Timm2014-06-161-1/+0
| | | | rebase.
* Moved requiring of Loofah from sanitizers.rb to action_view.rb.Timm2014-06-151-0/+1
|
* just require the template resolverAaron Patterson2014-01-311-1/+0
| | | | | | LookupContext is eagerly loaded, and FallbackFileSystemResolver is referenced at the class level. Just require the resolver from the eagerly loaded class rather than jumping through autoload hoops
* only ask for the location filters onceAaron Patterson2014-01-311-2/+2
|
* Require actionview/versionWashington Luiz2014-01-061-0/+1
| | | | just like all the other modules do require their version file
* update copyright notices to 2014. [ci skip]Vipul A M2014-01-011-1/+1
|
* Make ActionView::Tags loading tread safeRafael Mendonça França2013-12-021-0/+1
|
* 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
* Fix eager_autoload for layoutsŁukasz Strzałkowski2013-08-251-1/+1
| | | | Name was singular, should be plural
* Move layouts to AVŁukasz Strzałkowski2013-08-251-0/+1
|
* Move rendering from AP to AVŁukasz Strzałkowski2013-08-251-0/+1
|
* Move view_paths from AP to AVŁukasz Strzałkowski2013-08-251-0/+1
|
* Remove require to AP stuff that leftŁukasz Strzałkowski2013-06-201-1/+0
|
* Move actionpack/lib/action_view* into actionview/libPiotr Sarnacki2013-06-201-2/+71
|
* Add bare actionview gem to the root directoryPiotr Sarnacki2013-06-201-0/+24
This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack.