| Commit message (Expand) | Author | Age | Files | Lines |
* | Freeze string literals when not mutated. | schneems | 2015-07-19 | 1 | -1/+1 |
* | Fix handling of empty X_FORWARDED_HOST header. | adam | 2015-03-20 | 1 | -1/+1 |
* | drop string allocations per model url_for call in views | Aaron Patterson | 2015-03-01 | 1 | -1/+1 |
* | Add docs for ActionDispatch::Http::URL methods | claudiob | 2014-12-18 | 1 | -0/+109 |
* | Anchor should not be appended when set to nil/false. | Guo Xiang Tan | 2014-11-23 | 1 | -1/+3 |
* | Realign assignments :scissors: | Carlos Antonio da Silva | 2014-07-31 | 1 | -5/+5 |
* | Do not reassign variable when mutation is happening | Carlos Antonio da Silva | 2014-07-31 | 1 | -8/+5 |
* | Only concatenate path if it was given rather than converting blindly | Carlos Antonio da Silva | 2014-07-31 | 1 | -1/+1 |
* | Rename variable to better show its intent | Carlos Antonio da Silva | 2014-07-31 | 1 | -12/+12 |
* | Simplify conditional | Carlos Antonio da Silva | 2014-07-31 | 1 | -3/+2 |
* | Push options check up so we can simplify internal methods | Carlos Antonio da Silva | 2014-07-31 | 1 | -13/+10 |
* | use a strategy object for generating urls in named helpers | Aaron Patterson | 2014-07-17 | 1 | -8/+13 |
* | extract path building to a method | Aaron Patterson | 2014-07-16 | 1 | -9/+11 |
* | break out path building logic to methods | Aaron Patterson | 2014-07-16 | 1 | -14/+22 |
* | only extract :params from the options hash once | Aaron Patterson | 2014-07-16 | 1 | -3/+2 |
* | push host / port / protocol extraction up | Aaron Patterson | 2014-06-30 | 1 | -6/+6 |
* | add both branches to the only_path conditional | Aaron Patterson | 2014-06-19 | 1 | -6/+6 |
* | only check named_host? once in normalize_host | Aaron Patterson | 2014-06-12 | 1 | -3/+7 |
* | lookup subdomain from the options hash once, defaulting to true | Aaron Patterson | 2014-06-12 | 1 | -2/+2 |
* | only extract domain from the options hash once | Aaron Patterson | 2014-06-12 | 1 | -3/+4 |
* | reduce calls to `named_host?` | Aaron Patterson | 2014-06-12 | 1 | -2/+6 |
* | Removed warning actionpack url.rb | Juanito Fatas | 2014-06-12 | 1 | -2/+2 |
* | remove useless to_param call | Aaron Patterson | 2014-06-11 | 1 | -1/+1 |
* | only look up the subdomain once | Aaron Patterson | 2014-06-11 | 1 | -3/+4 |
* | scheme should contain one or more characters | Aaron Patterson | 2014-06-11 | 1 | -1/+1 |
* | pull the port out of the options hash once | Aaron Patterson | 2014-06-11 | 1 | -2/+3 |
* | remove useless nil check | Aaron Patterson | 2014-06-11 | 1 | -2/+2 |
* | these methods are always called with a tld_parameter | Aaron Patterson | 2014-06-11 | 1 | -3/+3 |
* | rm `same_host?`. The same conditional is two lines down. | Aaron Patterson | 2014-06-11 | 1 | -5/+3 |
* | Revert "rm `same_host?`. The same conditional is two lines down." | Aaron Patterson | 2014-06-11 | 1 | -5/+8 |
* | rm `same_host?`. The same conditional is two lines down. | Aaron Patterson | 2014-06-11 | 1 | -8/+5 |
* | cache host on the stack so we only look it up once | Aaron Patterson | 2014-06-11 | 1 | -8/+9 |
* | only pull :protocol from the options hash once | Aaron Patterson | 2014-06-11 | 1 | -2/+3 |
* | cache protocol on the stack to reduce options hash lookups | Aaron Patterson | 2014-06-11 | 1 | -7/+7 |
* | eliminate nil checks in normalize_port | Aaron Patterson | 2014-06-11 | 1 | -7/+7 |
* | reduce hash lookups and disconnect normalize_port from the options hash | Aaron Patterson | 2014-06-11 | 1 | -9/+9 |
* | Merge pull request #14986 from dlangevin/trailing-slash-url-generation | Rafael Mendonça França | 2014-05-24 | 1 | -7/+13 |
|\ |
|
| * | Fixes URL generation with trailing_slash: true | Dan Langevin | 2014-05-22 | 1 | -9/+17 |
* | | fewer string allocations per url_for | Aaron Patterson | 2014-05-20 | 1 | -7/+5 |
* | | mutate the path string to avoid object allocations | Aaron Patterson | 2014-05-20 | 1 | -4/+4 |
* | | push only_path conditional up | Aaron Patterson | 2014-05-20 | 1 | -18/+19 |
* | | push arg checking up | Aaron Patterson | 2014-05-20 | 1 | -4/+4 |
* | | fewer method calls and string garbage when there is no user/password | Aaron Patterson | 2014-05-20 | 1 | -9/+5 |
* | | Always use the provided port for protocol relative urls | Andrew White | 2014-05-11 | 1 | -0/+2 |
* | | ActionDispatch::Http::URL.normalize_port should not strip port for protocol r... | Guilherme Cavalcanti | 2014-05-11 | 1 | -2/+0 |
* | | skip dealing with params if none are provided | Aaron Patterson | 2014-05-09 | 1 | -4/+11 |
* | | don't mutate the options hash, so we don't have to dup | Aaron Patterson | 2014-05-09 | 1 | -4/+3 |
* | | use unless and || since these options are boolean | Aaron Patterson | 2014-05-09 | 1 | -1/+1 |
|/ |
|
* | Refactor ActionDispatch::Http::URL.build_host_url | Andrew White | 2013-04-18 | 1 | -20/+49 |
* | Duplicate options before mutating them | Andrew White | 2013-04-18 | 1 | -0/+1 |