| Commit message (Expand) | Author | Age | Files | Lines |
* | stop being clever and just call methods on the Route object | Aaron Patterson | 2011-03-08 | 1 | -1/+1 |
* | Raise ArgumentError if route name is invalid [#6517 state:resolved] | Andrew White | 2011-03-06 | 1 | -0/+2 |
* | use newer class cache api | Aaron Patterson | 2011-03-02 | 1 | -1/+1 |
* | refactor Reference to a ClassCache object, fix lazy lookup in Middleware so t... | Aaron Patterson | 2011-03-01 | 1 | -2/+3 |
* | Fix assert_recognizes with block constraints [#5805 state:resolved] | Andrew White | 2011-02-13 | 1 | -1/+3 |
* | use raise to create exceptions and to set the backtrace | Aaron Patterson | 2011-01-12 | 1 | -1/+1 |
* | The redirect routing method now allows for a hash of options which only chang... | Josh Kalderimis | 2010-11-30 | 1 | -44/+18 |
* | Speed up subdomain and domain calculus. | José Valim | 2010-11-23 | 1 | -14/+6 |
* | :subdomain, :domain and :tld_length options can now be used in url_for, allow... | Josh Kalderimis | 2010-11-23 | 1 | -6/+32 |
* | Properly reload routes defined in class definition | Piotr Sarnacki | 2010-09-30 | 1 | -0/+1 |
* | Allow mounting engines at '/' | Piotr Sarnacki | 2010-09-30 | 1 | -1/+1 |
* | Merge remote branch 'miloops/warnings' | José Valim | 2010-09-29 | 1 | -1/+1 |
|\ |
|
| * | Use redefine_method instead define_method, it may be already defined. | Emilio Tagua | 2010-09-28 | 1 | -1/+1 |
| * | Move uri parser to AS as URI.parser method to reuse it in AP and ARes. | Emilio Tagua | 2010-09-27 | 1 | -8/+2 |
* | | Move uri parser to AS as URI.parser method to reuse it in AP and ARes. | Emilio Tagua | 2010-09-28 | 1 | -8/+2 |
* | | Fix tests on 1.9.2. | José Valim | 2010-09-28 | 1 | -5/+0 |
* | | Properly initialize variables inside the initialize method. | José Valim | 2010-09-27 | 1 | -3/+8 |
|/ |
|
* | Define @_routes inside method, makes more sense and will be initialized when ... | Emilio Tagua | 2010-09-27 | 1 | -1/+1 |
* | Remove warning "URI.unescape is obsolete" from actionpack. | Emilio Tagua | 2010-09-27 | 1 | -4/+2 |
* | Merge remote branch 'miloops/warnings' | José Valim | 2010-09-27 | 1 | -2/+12 |
|\ |
|
| * | Remove old method before redefining it. | Emilio Tagua | 2010-09-27 | 1 | -0/+2 |
| * | Remove warning "URI.unescape is obsolete" from actionpack. | Emilio Tagua | 2010-09-27 | 1 | -2/+10 |
* | | Hash#empty? is faster than Enumerable#any? when used on a Hash. | thedarkone | 2010-09-27 | 1 | -1/+1 |
* | | No need to create a separate lambda for each call. | thedarkone | 2010-09-27 | 1 | -15/+14 |
|/ |
|
* | Refactor routing methods. | Emilio Tagua | 2010-09-22 | 1 | -6/+1 |
* | Add RouteSet#append | Carl Lerche | 2010-09-17 | 1 | -4/+12 |
* | Change app to main_app in mounted_helpers | Piotr Sarnacki | 2010-09-08 | 1 | -1/+1 |
* | Do not require passing :app to mounted helpers, it's actually useless and not... | Piotr Sarnacki | 2010-09-08 | 1 | -1/+1 |
* | Removed deprecated RouteSet API, still many tests fail | Piotr Sarnacki | 2010-09-05 | 1 | -9/+3 |
* | Implemented RouteSet#default_scope, which allows to set the scope for the ent... | Piotr Sarnacki | 2010-09-03 | 1 | -2/+6 |
* | Move RoutesProxy to separate file | Piotr Sarnacki | 2010-09-03 | 1 | -32/+0 |
* | This was used only to clear warning in ActionMailer tests, it shouldn't be do... | Piotr Sarnacki | 2010-09-03 | 1 | -5/+0 |
* | Refactor RoutesProxy to avoid using _with_routes in helpers | Piotr Sarnacki | 2010-09-03 | 1 | -1/+1 |
* | Refactor ActionMailer to not use hide_actions | Piotr Sarnacki | 2010-09-03 | 1 | -1/+6 |
* | Fix generating urls with mounted helpers in view context | Piotr Sarnacki | 2010-09-03 | 1 | -1/+1 |
* | For view_context we need to initialize RoutesProxy in context of controller, ... | Piotr Sarnacki | 2010-09-03 | 1 | -2/+4 |
* | We don't need delegating polymorphic_url and polymorphic_path anymore | Piotr Sarnacki | 2010-09-03 | 1 | -10/+6 |
* | Add mounted_helpers to routes | Piotr Sarnacki | 2010-09-03 | 1 | -0/+59 |
* | Routes refactoring: | Piotr Sarnacki | 2010-09-03 | 1 | -1/+1 |
* | Extended url_for to handle specifying which router should be used. | Piotr Sarnacki | 2010-09-03 | 1 | -12/+12 |
* | Get rid of :skip_prefix options in routes | Piotr Sarnacki | 2010-09-03 | 1 | -6/+3 |
* | New way of generating urls for Application from Engine. | Piotr Sarnacki | 2010-09-03 | 1 | -2/+2 |
* | Use env['action_dispatch.routes'] to determine if we should generate prefix o... | Piotr Sarnacki | 2010-09-03 | 1 | -6/+14 |
* | Revert "Setup explicit requires for files with exceptions. Removed them from ... | José Valim | 2010-09-02 | 1 | -1/+0 |
* | Setup explicit requires for files with exceptions. Removed them from autoload... | Łukasz Strzałkowski | 2010-09-02 | 1 | -0/+1 |
* | Support routing constraints in functional tests | Andrew White | 2010-08-20 | 1 | -2/+2 |
* | Avoid potentially expensive inspect call in router. [#4491 state:resolved] | Samuel Lebeau | 2010-08-03 | 1 | -3/+6 |
* | options could be of any kind of Hash (Hash, HashWithIndifferentAccess or Orde... | Santiago Pastorino | 2010-07-21 | 1 | -1/+1 |
* | Fixed a globbed route issue where slashes were being escaped, causing assert_... | Brian Rose | 2010-07-21 | 1 | -1/+2 |
* | Bump up to rack-mount 0.6.9 and rack-mount-0.6.6.pre removed from action_disp... | Santiago Pastorino | 2010-07-15 | 1 | -3/+1 |