aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ci skip] Fix rdoc markupakihiro172015-08-122-2/+2
|
* Merge pull request #21205 from akihiro17/fix-docMatthew Draper2015-08-121-13/+13
|\ | | | | [ci skip] Fix the indentation
| * [ci skip] Fix the indentationakihiro172015-08-121-13/+13
| |
* | Merge pull request #21204 from brooksreese/ruby_v_before_tipMatthew Draper2015-08-121-5/+5
|\ \ | | | | | | [ci skip] Swap ruby -v and the installation tip
| * | [ci skip] Swap ruby -v and the installation tipBrooks Reese2015-08-111-5/+5
| | |
* | | only call `split_constraints` onceAaron Patterson2015-08-111-4/+4
| | |
* | | only do is_a? checks on `options_constraints` onceAaron Patterson2015-08-111-16/+9
| | | | | | | | | | | | we don't need to do it so many times.
* | | Mapping instances don't need `scope` anymoreAaron Patterson2015-08-111-3/+3
| | |
* | | pull scope[:constraints] upAaron Patterson2015-08-111-5/+4
| | | | | | | | | | | | Now we only need to call `split_constraints` possibly twice!
* | | pull :format up a little bitAaron Patterson2015-08-111-3/+5
| | | | | | | | | | | | | | | apparently `format` can also come from the scope options, so we need to extract it there too.
* | | Merge pull request #21203 from denniss/issue-21199Sean Griffin2015-08-112-1/+9
|\ \ \ | | | | | | | | Authorization scheme should be case insensitive. Fixes #21199
| * | | Authorization scheme should be case insensitive. Fixes #21199Dennis Suratna2015-08-112-1/+9
| | | |
* | | | pull `to` upAaron Patterson2015-08-112-19/+20
| | | | | | | | | | | | | | | | | | | | this way we don't have to insert / delete it from the options hash so many times.
* | | | push scope access up for modulesAaron Patterson2015-08-111-3/+3
| | | | | | | | | | | | | | | | | | | | eventually we'll remove the need to access `scope` inside the Mapping object.
* | | | Merge pull request #21202 from rodzyn/rename_methodRafael Mendonça França2015-08-111-4/+4
|\ \ \ \ | | | | | | | | | | Rename match_attribute_method? to matched_attribute_method
| * | | | Rename match_attribute_method? to matched_attribute_methodMarcin Olichwirowicz2015-08-121-4/+4
|/ / / / | | | | | | | | | | | | | | | | `match_attribute_method?` is a bit confusing because it suggest that a return value is a boolean which is not true.
* | | | path is never nilAaron Patterson2015-08-111-1/+1
| | | |
* | | | split options hash and pass values downAaron Patterson2015-08-111-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | `using_match_shorthand?` doesn't need to know that an options hash exists. Also use this opportunity to make the boolean logic a little more sane
* | | | pull option duping upAaron Patterson2015-08-111-7/+6
| | | |
* | | | split paths by typeAaron Patterson2015-08-111-16/+27
| | | | | | | | | | | | | | | | | | | | this simplifies the "downstream" logic since we know we'll only be dealing with one particular type
* | | | one fewer hash mutationAaron Patterson2015-08-111-3/+3
| | | |
* | | | push option decomposition up a bit moreAaron Patterson2015-08-112-6/+6
| | | | | | | | | | | | | | | | | | | | I think we can find the original place where `action` is added to the options hash now.
* | | | push `action` option extraction up one frame.Aaron Patterson2015-08-111-3/+5
| | | |
* | | | pull up the "options.delete(:controller)" logicAaron Patterson2015-08-112-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | we want to try to pull this logic up to where the user actually passed in "controller" so that it's close to the related call. That way when we're down the stack, we don't need to wonder "why are we doing this?"
* | | | Merge pull request #21086 from bukue/add_break_sequence_option_to_word_wrapKasper Timm Hansen2015-08-113-5/+16
|\ \ \ \ | | | | | | | | | | Parametrize break sequence for word_wrap on ActionView Text Helpers
| * | | | Sometimes you need a specific break sequence while using word wrap and as ↵Mauricio Gomez Aguinaga2015-08-113-5/+16
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | today the only option we have is "\n" and is hardcoded. With this change you will be able to specify any break sequence ("\r\n" for example) as an option. adding proper documentation for break_sequence in ActionView::Helpers::TextHelper.word_wrap adding some more documentation for word_wrap custom break sequence and making sure we use new hash syntax
* | | | Merge pull request #21200 from mlbileschi/patch-1Rafael Mendonça França2015-08-111-1/+1
|\ \ \ \ | | | | | | | | | | fix comment about which mail headers are excluded
| * | | | fix comment about which mail headers are excludedmlbileschi2015-08-111-1/+1
|/ / / /
* | | | Merge pull request #21195 from brooksreese/fix_broken_link_markupYves Senn2015-08-111-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | [ci skip] Fix broken link markup
| * | | | [ci skip] Fix broken link markupBrooks Reese2015-08-111-1/+1
| | |/ / | |/| |
* | | | Merge pull request #21187 from arthurnn/method_missing_routes_avArthur Nogueira Neves2015-08-111-3/+9
|\ \ \ \ | | | | | | | | | | Dont try to call method missing in routes if thats not what we want
| * | | | Dont try to call method missing in routes if thats not what we wantArthur Neves2015-08-101-3/+9
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If, doing a test like this: ``` class BugTest < ActionView::TestCase def test_foo omg end ``` Will raise with: ``` RuntimeError: In order to use #url_for, you must include routing helpers explicitly. For instance, `include Rails.application.routes.url_helpers`. ``` Thats a bit confusing, as we are not calling url_for at all.
* | | | Merge pull request #17885 from starbelly/patch-1Yves Senn2015-08-113-14/+31
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add method to run command-line db apps Conflicts: activerecord/CHANGELOG.md
| * | | | Add run_cmd class method to ActiveRecord::Tasks::DatabaseTasksstarbelly2015-08-014-17/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added run_cmd() class method to dry up Kernel.system() messages within this namespace and avoid shell expansion by passing a list of arguments instead of a string - Update structure_dump, structure_load, and related tests units to pass a list of params instead of using a string to avoid shell expansion
* | | | | Tiny documentation fixes [ci skip]Robin Dupret2015-08-113-8/+13
| | | | |
* | | | | Merge pull request #21165 from manlon/masterRafael Mendonça França2015-08-115-3/+34
|\ \ \ \ \ | | | | | | | | | | | | use correct DB connection for generated HABTM table
| * | | | | use correct DB connection for generated HABTM tableMatt Hanlon2015-08-075-3/+34
| | | | | |
* | | | | | Merge pull request #21138 from dhiachou/patch-2Rafael Mendonça França2015-08-111-2/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Outdated information about session storage updated [ci skip]
| * | | | | | [ci skip] Typo fixedDhia Eddine Chouchane2015-08-061-1/+1
| | | | | | |
| * | | | | | Outdated information about session storage updated [ci skip] Dhia Eddine Chouchane2015-08-061-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The guide contains information about Rails 2 storing mechanism, but not Rails 4. Enhanced the accuracy and coherence of information (There was a part saying "Older versions of Rails use CookieStore, which uses `secret_token` instead of `secret_key_base` that is used by EncryptedCookieStore." while there was no mention of EncryptedCookieStore before)
* | | | | | | :nodoc: internal class [ci skip]Godfrey Chan2015-08-101-1/+1
| | | | | | |
* | | | | | | Merge pull request #21191 from byroot/deprecate-si-prefixRafael Mendonça França2015-08-114-11/+19
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | Deprecate si prefix
| * | | | | | Deprecate :si prefix in number_to_human_size without replacementJean Boussier2015-08-102-9/+15
| | | | | | |
| * | | | | | Deprecate the :prefix option of `number_to_human_size`Jean Boussier2015-08-102-2/+4
| | | | | | |
* | | | | | | Only use path if the key is not presentRafael Mendonça França2015-08-101-1/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | There are some cases where :path is nil on option and we should respect that.
* | | | | | try to pass fewer options to `scope`Aaron Patterson2015-08-101-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | We already know how to handle `path`, so lets just handle it on our own.
* | | | | | always cast `name` to a symbol, and never to_s itAaron Patterson2015-08-101-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All callers of `action_path` interpolate the return value in to a string, so there is no need for the method to to_s it. to_sym on a symbol will return the same symbol, though I think `action_path` may always be called with a symbol so this might not be necessary.
* | | | | | pull path conditional upAaron Patterson2015-08-101-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | we only need to check for `path` once.
* | | | | | Merge pull request #21184 from brooksreese/touch_on_unit_testingRafael Mendonça França2015-08-101-1/+7
|\ \ \ \ \ \ | | | | | | | | | | | | | | [ci skip] Add link to testing guide
| * | | | | | [ci skip] Add link to testing guideBrooks Reese2015-08-101-1/+7
| | |_|_|/ / | |/| | | |