aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch
Commit message (Expand)AuthorAgeFilesLines
...
| * helpers should be a Set so it doesn't grow unboundedAaron Patterson2014-07-291-4/+12
| * pass the module to define_named_route_methodsAaron Patterson2014-07-291-7/+7
| * only ask for the routes module onceAaron Patterson2014-07-291-2/+4
| * eval_block should be privateAaron Patterson2014-07-291-0/+1
| * remove the mounted? methodAaron Patterson2014-07-282-6/+2
| * remove some cachingAaron Patterson2014-07-281-2/+1
| * Fix AC::TemplateAssertions instance variables not resetting.Guo Xiang Tan2014-07-211-0/+1
| * LOCALHOST definition should match any 127.0.0.0/8 addressEarl J St Sauver2014-07-181-1/+1
| * `recall` should be `path_parameters`, also make it requiredAaron Patterson2014-07-171-3/+3
| * pass the route name to define_url_helperAaron Patterson2014-07-172-22/+24
| * use a strategy object for generating urls in named helpersAaron Patterson2014-07-172-21/+37
| * extract path building to a methodAaron Patterson2014-07-161-9/+11
| * break out path building logic to methodsAaron Patterson2014-07-161-14/+22
| * only extract :params from the options hash onceAaron Patterson2014-07-161-3/+2
| * we do not need to dup the options hash, it is private and a new object each callAaron Patterson2014-07-161-2/+2
| * push rails app testing upAaron Patterson2014-07-161-9/+13
| * Rails-ish apps should descend from Rails::RailtieAaron Patterson2014-07-161-8/+3
| * app should always be a class (I suppose)Aaron Patterson2014-07-161-1/+1
| * we should be checking if the app is a classAaron Patterson2014-07-161-1/+1
| * extract inner options before delegating to the helperAaron Patterson2014-07-161-7/+13
| * always transcode the file to utf-8Aaron Patterson2014-07-161-0/+1
| * routed applications will respond to these methodsAaron Patterson2014-07-152-2/+2
| * rack 1.6 encodes the filenames in posts correctly nowAaron Patterson2014-07-151-8/+1
| * RouteSet should be in charge of constructing the dispatherAaron Patterson2014-07-152-8/+13
| * Stash original path in `ShowExceptions` middlewareGrey Baker2014-07-141-0/+1
| * Use `#bytesize` instead of `#size` when checking for cookie overflowAgis-2014-07-111-2/+2
* | We don't need loofah for the assertionsRafael Mendonça França2014-07-151-3/+2
* | Merge pull request #11218 from kaspth/loofah-integrationRafael Mendonça França2014-07-105-597/+20
|\ \ | |/ |/|
| * Add document_root_element to ActionDispatch::IntegrationTest so assert_select...Timm2014-06-161-0/+4
| * Moved html_document to ActionDispatch::Assertions. Included the Rails::Dom::T...Timm2014-06-161-1/+12
| * Changed deprecation message in dom and selector assertions in Action Dispatch.Timm2014-06-162-2/+2
| * Removed tag.rb, since it is actually removed, not just deprecated. [ci skip]Timm2014-06-161-3/+0
| * Moved ActionView::Assertions dependency from Action Pack's lib to abstract_un...Timm2014-06-161-2/+1
| * Added deprecation warning to ActionDispatch::Assertions::TagAssertions.Timm2014-06-161-0/+3
| * Trimmed deprecation message for ActionDispatch::Assertions::SelectorAssertions.Timm2014-06-161-1/+1
| * Moved Dom and Selector assertions from ActionDispatch to ActionView.Timm2014-06-164-544/+6
| * Fixed: assert_select_encoded finds the right content. No longer uses a <encod...Timm2014-06-161-5/+9
| * Removed mention of css_select supporting substitution values. It is not teste...Timm2014-06-161-7/+1
| * Updated documentation to state more things about css selectors with substitut...Timm2014-06-161-3/+11
| * Reworked the wrapping root in NodeSet implementation in css_select.Timm2014-06-161-3/+5
| * Wrapped element to search in NodeSet. Changed selectors to selector.Timm2014-06-161-3/+5
| * Moved around alias line.Timm2014-06-161-2/+2
| * Returning from filter if matches are empty.Timm2014-06-161-1/+1
| * Fixed: no longer wrapped @selected in fragment, since .css works fine without...Timm2014-06-161-2/+1
| * Reverted to using documents instead of document fragments, since searching vi...Timm2014-06-161-3/+6
| * add_regex returns inspected value for non Regexp objects. Workaround, so user...Timm2014-06-161-1/+2
| * Fixed: inadvertently called message method in MiniTest instead of selector.me...Timm2014-06-161-1/+1
| * Cleaned up SubstitutionContext class.Timm2014-06-161-10/+8
| * Simplified assert_select further by moving match filtering into HTMLSelector ...Timm2014-06-161-32/+29
| * Fixed: now only compares html of children in filter_matches.Timm2014-06-161-1/+1