Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | | Removed unnecessary require | Anupam Choudhury | 2013-09-10 | 1 | -1/+0 | |
|/ / / / | ||||||
* | | | | Merge pull request #12181 from claudiob/remove-unused-helper-fixtures | Carlos Antonio da Silva | 2013-09-09 | 2 | -4/+0 | |
|\ \ \ \ | | | | | | | | | | | Remove helper fixtures not used in any test | |||||
| * | | | | Remove helper fixtures not used in any test | claudiob | 2013-09-09 | 2 | -4/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fixture for module AbcHelper defines three functions bare_a, bare_b and bare_c, but only bare_a is used in the code that tests helper functions. | |||||
* | | | | | let the class cache object clean up user input | Aaron Patterson | 2013-09-09 | 1 | -8/+20 | |
| | | | | | ||||||
* | | | | | make @bitsweat happy. :heart: | Aaron Patterson | 2013-09-09 | 1 | -0/+6 | |
| | | | | | ||||||
* | | | | | stop using deprecated api in the tests | Aaron Patterson | 2013-09-09 | 1 | -1/+1 | |
|/ / / / | ||||||
* | | | | Remove BasicRendering tests | José Valim | 2013-09-09 | 3 | -72/+1 | |
| | | | | ||||||
* | | | | Remove remaining coupling with AV in MimeResponds | José Valim | 2013-09-09 | 4 | -5/+20 | |
| | | | | ||||||
* | | | | Remove BasicRendering and remove template functionality from AbsC::Rendering | José Valim | 2013-09-09 | 5 | -47/+24 | |
| | | | | ||||||
* | | | | Merge pull request #12167 from hannesfostie/grammar-improvement | Steve Klabnik | 2013-09-09 | 1 | -1/+1 | |
|\ \ \ \ | |/ / / |/| | | | [ci skip] Improves a sentence in guides/security | |||||
| * | | | Improves a sentence in guides/security | Hannes Fostie | 2013-09-09 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Changed "... books make this wrong" to "... books get this wrong" | |||||
* | | | | Merge pull request #12157 from robin850/patch-9 | Yves Senn | 2013-09-09 | 1 | -1/+1 | |
|\ \ \ \ | | | | | | | | | | | Use MiniTest::Unit::TestCase instead of Minitest::Test [ci skip] | |||||
| * | | | | Use MiniTest::Unit::TestCase instead of Minitest::Test | Robin Dupret | 2013-09-07 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since Rails 4.0.x is depending on Minitest 4.x, the constant won't be available so the gist won't run. [ci skip] | |||||
* | | | | | Merge pull request #12166 from JuanitoFatas/doc-patch-1 | Yves Senn | 2013-09-09 | 1 | -1/+1 | |
|\ \ \ \ \ | |_|/ / / |/| | | | | [ci skip] Change link name of Rails i18n wiki. | |||||
| * | | | | [ci skip] Change link name of Rails i18n wiki. | Juanito Fatas | 2013-09-09 | 1 | -1/+1 | |
|/ / / / | | | | | | | | | | | | | Actually it's Ruby i18n link. | |||||
* | | | | Merge pull request #12164 from rywall/patch-1 | Steve Klabnik | 2013-09-08 | 1 | -2/+2 | |
|\ \ \ \ | | | | | | | | | | | Typo in Changelog. [ci skip] | |||||
| * | | | | Typo in Changelog. | Ryan Wallace | 2013-09-08 | 1 | -2/+2 | |
|/ / / / | ||||||
* / / / | Fix fixtures regression that required table names to map to classes only, ↵ | Jeremy Kemper | 2013-09-08 | 2 | -2/+2 | |
|/ / / | | | | | | | | | | not class names | |||||
* | | | Merge pull request #12155 from jetthoughts/reformat_guides_code_examples | Xavier Noria | 2013-09-07 | 11 | -90/+89 | |
|\ \ \ | | | | | | | | | Use Ruby on Rails Coding Conventions for code examples in the guides | |||||
| * | | | Use Ruby on Rails Coding Conventions for code examples in the guides | Paul Nikitochkin | 2013-09-06 | 11 | -90/+89 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Indent after private/protected * Ruby >= 1.9 syntax for hashes * Prefer method { do_stuff } instead of method{do_stuff} for single-line blocks. [ci skip] | |||||
* | | | | hm:t join tables may not have a primary key | Aaron Patterson | 2013-09-06 | 2 | -1/+23 | |
| | | | | ||||||
* | | | | use polymorphic proxies to remove duplicate code | Aaron Patterson | 2013-09-06 | 1 | -24/+43 | |
| | | | | ||||||
* | | | | reduce duplication somewhat | Aaron Patterson | 2013-09-06 | 1 | -14/+14 | |
| | | | | ||||||
* | | | | make the duplicate code more similar | Aaron Patterson | 2013-09-06 | 1 | -4/+10 | |
| | | | | ||||||
* | | | | auto link hm:t fixture join tables like habtm | Aaron Patterson | 2013-09-06 | 2 | -0/+51 | |
|/ / / | ||||||
* | | | don't depend on object state when reading fixture files | Aaron Patterson | 2013-09-06 | 1 | -8/+7 | |
| | | | ||||||
* | | | ensure @model_class is initialized | Aaron Patterson | 2013-09-06 | 1 | -0/+1 | |
| | | | ||||||
* | | | Fix failure with minitest 5.0.7 | Carlos Antonio da Silva | 2013-09-06 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Require minitest/mock in test where stub method is needed. Apparently this was being "imported" by minitest pride plugin, which previously required "minitest/autorun", that required "minitest/mock", making the method available by chance. It has been changed in minitest: https://github.com/seattlerb/minitest/commit/595ce955c0d89575726d10fc18d2afd8f334bcbe So we need to make sure we require what we really need where necessary. | |||||
* | | | Do not use instance variables if they are not reused elsewhere | Carlos Antonio da Silva | 2013-09-06 | 1 | -2/+1 | |
| | | | ||||||
* | | | Merge pull request #12148 from gzohari/callback-typo | Carlos Antonio da Silva | 2013-09-06 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | Fix typo in set_callback docs. [ci skip] | |||||
| * | | | Fix typo in set_callback docs. [ci skip] | Gilad Zohari | 2013-09-06 | 1 | -1/+1 | |
|/ / / | ||||||
* | | | no need to dup | Aaron Patterson | 2013-09-05 | 1 | -1/+1 | |
| | | | ||||||
* | | | push logic outside the FixtureSet constructor | Aaron Patterson | 2013-09-05 | 1 | -3/+3 | |
| | | | ||||||
* | | | only construct the FixtureSet with AR models | Aaron Patterson | 2013-09-05 | 1 | -2/+11 | |
| | | | ||||||
* | | | push constant lookup in the a cache object | Aaron Patterson | 2013-09-05 | 1 | -2/+21 | |
| | | | ||||||
* | | | Merge pull request #12143 from rajcybage/fixing_typos | Carlos Antonio da Silva | 2013-09-05 | 2 | -2/+2 | |
|\ \ \ | | | | | | | | | fix actionview and activemodel test cases typos | |||||
| * | | | fix actionview and activemodel test cases typos | Rajarshi Das | 2013-09-05 | 2 | -2/+2 | |
| | | | | ||||||
* | | | | Merge pull request #12139 from vipulnsward/typos_av | Yves Senn | 2013-09-05 | 2 | -2/+2 | |
|\ \ \ \ | | | | | | | | | | | Fix method name typos | |||||
| * | | | | Fix method name typos | Vipul A M | 2013-09-05 | 2 | -2/+2 | |
| | | | | | ||||||
* | | | | | Merge pull request #12130 from egilburg/patch-1 | Yves Senn | 2013-09-05 | 1 | -2/+33 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Document a difference between pluck and select [ci skip] | |||||
| * | | | | Document a difference between pluck and select [ci skip] | Eugene Gilburg | 2013-09-04 | 1 | -2/+33 | |
| | | | | | | | | | | | | | | | | | | | | Explain that `pluck` differs from `select` in that it does not construct `ActiveRecord` objects and thus model-level overrides are unavailable. | |||||
* | | | | | Add a test case for exists? with multiple values | Rafael Mendonça França + Kassio Borges | 2013-09-04 | 1 | -0/+1 | |
| | | | | | ||||||
* | | | | | render_to_string shouldn't play with response_body | Santiago Pastorino | 2013-09-04 | 1 | -4/+5 | |
| | | | | | ||||||
* | | | | | Merge pull request #12094 from brocktimus/master | Steve Klabnik | 2013-09-04 | 1 | -3/+3 | |
|\ \ \ \ \ | | | | | | | | | | | | | Substitute dynamic finders in 4.0 release notes [ci skip] | |||||
| * | | | | | Adjusting 4.0 release notes to show more appropriate replacements for ↵ | Brock Trappitt | 2013-09-01 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | dynamic finders [ci skip] | |||||
* | | | | | | Merge pull request #12077 from estsauver/doc_fix | Steve Klabnik | 2013-09-04 | 1 | -2/+3 | |
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | Update mapper documenation for match helper [ci skip] | |||||
| * | | | | | Update mapper documenation for match helper [ci skip] | Earl St Sauver | 2013-08-30 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This piece of documentation is out of date. The use of match without any via option is prevented, now the HTTP verbs have to be explicitly set. If they're not set then the error message in normalize_conditions! (around line 186) is shown. | |||||
* | | | | | | Merge pull request #11958 from jetthoughts/extract_pre_process_orders_args | Yves Senn | 2013-09-04 | 5 | -15/+52 | |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Re-use order arguments pre-processing for reorder | |||||
| * | | | | | | Extracted from `order` processing of arguments, and use it for `reorder` to ↵ | Paul Nikitochkin | 2013-09-04 | 5 | -15/+52 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | be consistent. | |||||
* | | | | | | | adding a hm:t test for singleton ar objects | Aaron Patterson | 2013-09-03 | 1 | -0/+27 | |
| | | | | | | |