aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller
Commit message (Expand)AuthorAgeFilesLines
* Raise ArgumentError if an unrecognised callback is skippedIain Beeston2015-04-031-3/+3
* Removed non-standard and unused require 'active_support/deprecation' from par...Vipul A M2015-02-271-2/+0
* fix NameError in `skip_filter`. callback doesn't exist.yuuji.yaginuma2015-02-271-1/+1
* Deprecate `AbstractController::Callbacks#skip_action_callback`Iain Beeston2015-02-241-0/+1
* Merge pull request #11790 from printercu/patch-3Rafael Mendonça França2015-02-121-7/+8
|\
| * ActionController#translate also lookups shortcut without action nameMax Melentiev2013-10-221-1/+5
| * ActionController#translate supports symbolsprintercu2013-09-251-6/+3
* | Use public Module#include, in favor of https://bugs.ruby-lang.org/issues/8846robertomiranda2015-01-311-2/+2
* | fix typo in `_filter` deprecation message. [ci skip]Yves Senn2015-01-301-5/+5
* | Deprecate all *_filter callbacks in favor of *_action callbacksAbdelkader Boudih2015-01-081-5/+27
* | Merge pull request #18404 from claudiob/rebase-14549Rafael Mendonça França2015-01-081-0/+10
|\ \
| * | Add test/doc for :if/:except in skip_before_actionclaudiob2015-01-081-0/+5
| * | Add test case and documentation for skip_before_filter.Lauro Caetano2015-01-081-0/+5
* | | Remove ActionController::HideActions (closes #18336)brainopia2015-01-061-14/+2
|/ /
* | remove unneeded check since /_one_time_conditions/ is removedAditya Kapoor2015-01-051-2/+1
* | Merge pull request #17227 from claudiob/explicitly-abort-callbacksRafael Mendonça França2015-01-031-1/+1
|\ \
| * | Throw :abort halts default CallbackChainsclaudiob2015-01-021-1/+1
* | | Fix a few typos [ci skip]Robin Dupret2015-01-032-3/+3
* | | Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-01-033-18/+24
|\ \ \ | |/ / |/| |
| * | Better docs for AbstractControllerclaudiob2014-12-223-18/+24
* | | Merge pull request #8740 from amatsuda/missing_source_fileRafael Mendonça França2015-01-021-1/+1
|\ \ \ | |/ / |/| |
| * | replace use of MissingSourceFile with LoadErrorAkira Matsuda2013-01-041-1/+1
* | | Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-291-1/+1
* | | give a better error message for misspelled helpersXavier Noria2014-10-251-1/+11
* | | remove deprecated `MissingHelperError` proxy.Yves Senn2014-08-141-3/+0
* | | Deprecate `*_path` methods in mailers@schneems and @sgrif2014-07-302-3/+11
* | | Relpace `=~ Regexp.new str` with `.include? str` in AC::Base#_valid_action_name?Viktar Basharymau2014-06-191-1/+1
* | | Partially revert deprecation of *_filterRafael Mendonça França2014-06-031-27/+6
* | | Deprecate all *_filter callbacks in favor of *_action callbacksRafael Mendonça França2014-05-271-20/+24
* | | Remove duplicated to_s method call.Guo Xiang Tan2014-05-251-1/+1
* | | fixed a typo [ci skip]Aida2014-05-171-1/+1
* | | docs, make `ActionNotFound` public API. [ci skip]Yves Senn2014-05-111-1/+2
* | | adding complete message in documentation [ci skip]Gaurav Sharma2014-05-111-3/+4
* | | Only accept actions without File::SEPARATOR in the name.Rafael Mendonça França2014-05-061-3/+25
* | | Get rid of extra local var that does not add to the logicCarlos Antonio da Silva2014-05-051-2/+2
* | | replace class_eval by define_method in abstract_controller/callbackskirill2014-04-201-35/+29
* | | Check if the `request` variable isn't nil when calling render_to_stringJoan Karadimov2014-02-201-1/+3
* | | Introduce `render :body` for render raw contentPrem Sichanugrist2014-02-181-2/+2
* | | Require action_view to fix missing constantPhilipe Fatio2014-02-071-0/+1
* | | Move the null mime type to request.formatCarlos Antonio da Silva2013-12-231-1/+1
* | | Merge branch 'master' of github.com:lifo/docrailsVijay Dev2013-12-201-1/+1
|\ \ \
| * | | Typos. return -> returns. [ci skip]Lauro Caetano2013-12-031-1/+1
* | | | Require action_view explicitly in AC::BaseŁukasz Strzałkowski2013-12-081-0/+1
* | | | Merge pull request #13189 from strzalek/retain-ap-av-depJeremy Kemper2013-12-051-0/+1
|\ \ \ \
| * | | | Retain ActionPack dependency on ActionViewŁukasz Strzałkowski2013-12-051-0/+1
* | | | | Improve a couple exception messages related to variants and mime typesCarlos Antonio da Silva2013-12-031-8/+10
|/ / / /
* / / / Action Pack VariantsŁukasz Strzałkowski2013-12-042-1/+11
|/ / /
* | | calculate the ivars to remove in advance as a set and cache them in aAaron Patterson2013-11-061-8/+2
* | | use a set and reject to avoid array allocationsAaron Patterson2013-11-061-4/+11
* | | each_with_object on the view_assigns hashAaron Patterson2013-11-061-3/+1