aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add a test for passing two models to the polymorphic_url methodAaron Patterson2014-05-122-1/+9
|
* typo: resulution -> resolution [ci skip]Godfrey Chan2014-05-121-1/+1
|
* reduce conditionals in url_forAaron Patterson2014-05-121-3/+6
|
* extract route key translation to a method and reuse itAaron Patterson2014-05-121-17/+14
|
* make the module version quack the same as the instanceAaron Patterson2014-05-121-3/+10
| | | | this way we can stop checking respond_to on every call.
* Hash#except is expensive and this is a hotspot, so use a dup + deleteAaron Patterson2014-05-121-1/+2
|
* test, use `columns_hash[]` in place of `columns.find {}`.Yves Senn2014-05-128-12/+12
|
* pg, `change_column_default` accepts `[]`. Closes #11586.Yves Senn2014-05-124-3/+18
|
* pg, map `char` and `name` types as string. [dark-panda & Yves Senn]Yves Senn2014-05-123-0/+33
| | | | Closes #10802.
* Merge pull request #13334 from gregolsen/postgresql_infinityYves Senn2014-05-123-3/+30
|\ | | | | | | | | | | | | | | | | | | pg, fix Infinity and NaN values conversion. Closes #13334. * rebased * removed guard * inlined guard into case statement
| * pg, fix Infinity and NaN values conversion.Innokenty Mihailov2014-05-123-3/+30
|/ | | | Before this patch `Infinity`, `-Infinity` and `Nan` were read as `0`.
* Merge pull request #10505 from patricksrobertson/bigserial_id_not_identifying_pkYves Senn2014-05-123-1/+33
|\ | | | | | | | | | | | | | | | | Handle other pk types in PostgreSQL gracefully. Closes #10505. - rebased - test slightly modified
| * Handle other pk types in PostgreSQL gracefully.Patrick Robertson2014-05-123-1/+33
|/ | | | | | | | | | | | | | In #10410 it was noted that you can no longer create PK's with the type of bigserial in PostgreSQL in 4.0.0.rc1. This is mostly because the newer adapter is checking for column type with the id column instead of just letting it pass through like it did before. Side effects: You may just create a PK column of a type that you really don't want to be your PK. As far as I can tell this was allowed in 3.2.X and perhaps an exception should be raised if you try and do something extremely dumb.
* Merge pull request #14999 from yahonda/modify_bind_variable_nameYves Senn2014-05-121-2/+3
|\ | | | | | | | | | | | | Modify assert conditions not to be affected by each database bind variable naming conventions Closes #14999.
| * Modify assert conditions not to be affectedYasuo Honda2014-05-121-2/+3
| | | | | | | | by each database bind variable naming conventions
* | Merge pull request #15060 from tgxworld/remove_unnecessary_tests_methodRafael Mendonça França2014-05-121-2/+0
|\ \ | | | | | | Remove redundant tests method.
| * | Remove redundant tests method.Guo Xiang Tan2014-05-111-2/+0
| | |
* | | Update attribute_methods.rbGuillermo Iguaran2014-05-111-1/+1
| | | | | | | | | Improve documentation
* | | Merge pull request #15063 from cbeer/correct-attribute_present-docsGuillermo Iguaran2014-05-111-7/+7
|\ \ \ | |/ / |/| | correcting method documentation [ci skip]
| * | correcting method documentation [ci skip]Chris Beer2014-05-111-7/+7
| | |
* | | Merge pull request #10662 from ↵Carlos Antonio da Silva2014-05-111-9/+9
|\ \ \ | | | | | | | | | | | | | | | | take/change-test-name-for-ActiveRecord--Validations#valid- Refactor AR's validations_test.rb
| * | | Refactor AR's validations_test.rbTakehiro Adachi2013-12-031-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `:context` switch feature is implemented in ActiveRecord::Validations#valid? method, so we should rename the test names, and execute `valid?` in the test. Change test name in AR's validations_test.rb This test is testing save method's code
* | | | Merge pull request #15059 from marcioj/patch-1Robin Dupret2014-05-111-2/+2
|\ \ \ \ | | | | | | | | | | Replace :base with :in [ci skip]
| * | | | Replace :base with :in [ci skip]Marcio Junior2014-05-111-2/+2
|/ / / /
* | | | Tidy up implementation of #15010Andrew White2014-05-112-11/+7
| | | |
* | | | Make TimeZone#parse behave more like Time#parse.Ulysse Carion2014-05-113-1/+25
| | | | | | | | | | | | | | | | | | | | Namely, if the mday is omitted but any other upper components are, then instead of supplying the mday from the current time, it defaults to 1.
* | | | docs, make `ActionNotFound` public API. [ci skip]Yves Senn2014-05-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a follow up to #15058. This exception is regularly raised during development. This means it will enter the user realm. We should provide an API page to show that this exception is public API. /cc @schneems
* | | | Merge pull request #15058 from Gaurav2728/gaurav-doc_messageRichard Schneeman2014-05-111-3/+4
|\ \ \ \ | | | | | | | | | | adding complete message in documentation [ci skip]
| * | | | adding complete message in documentation [ci skip]Gaurav Sharma2014-05-111-3/+4
|/ / / /
* | | | Merge branch 'master' of github.com:rails/railsAndrew White2014-05-111-0/+59
|\ \ \ \
| * | | | pg guide, PostgreSQL legacy table view example. [ci skip]Yves Senn2014-05-111-0/+59
| | | | |
* | | | | Always use the provided port for protocol relative urlsAndrew White2014-05-113-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | There may be situations where you need to tunnel SSL connections over port 80 so we shouldn't remove it if it has been explicitly provided.
* | | | | ActionDispatch::Http::URL.normalize_port should not strip port for protocol ↵Guilherme Cavalcanti2014-05-112-2/+12
|/ / / / | | | | | | | | | | | | relative URL.
* | | | docs, fix typo in docs added by ed56e596a04673. [ci skip]Yves Senn2014-05-101-2/+2
| | | |
* | | | Merge pull request #15056 from josemarluedke/single-quotes-on-plugin-gemfileRafael Mendonça França2014-05-102-7/+7
|\ \ \ \ | | | | | | | | | | Change Gemfile’s double quotation marks in plugin generator
| * | | | Change Gemfile’s double quotes in plugin generatorJosemar Luedke2014-05-102-7/+7
|/ / / / | | | | | | | | | | | | | | | | Since the generated application’s Gemfile is using single quotation marks, it seems fair to use it on plugin’s Gemfile as well.
* | | | Merge pull request #15054 from mechanicles/documentation-consistencyRafael Mendonça França2014-05-101-3/+3
|\ \ \ \ | | | | | | | | | | Keep method's description/documentation consistent [ci skip]
| * | | | Keep method's description/documentation consistent [ci skip]Santosh Wadghule2014-05-111-3/+3
|/ / / /
* | | | feature detect for FNM_EXTGLOB for older Ruby. Fixes #15053Aaron Patterson2014-05-101-5/+21
| | | |
* | | | minor change in AR readme [ci skip]Vijay Dev2014-05-101-1/+1
| | | |
* | | | Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-05-106-11/+49
|\ \ \ \
| * | | | copy edits [ci skip]Vijay Dev2014-05-102-14/+13
| | | | |
| * | | | [ci skip] add example to AR#assign_attributesschneems2014-05-091-0/+10
| | | | |
| * | | | [ci skip] doc ActiveSupport::TimeWithZone#to_sschneems2014-05-091-2/+5
| | | | | | | | | | | | | | | Current docs are wrong. Does not accept strftime inputs.
| * | | | [ci skip] doc Http::Headers methodsschneems2014-05-091-1/+17
| | | | |
| * | | | fix formatting errors [ci skip]Vijay Dev2014-05-091-6/+6
| | | | |
| * | | | copy edits [ci skip]Vijay Dev2014-05-082-3/+2
| | | | |
| * | | | [ci skip] document ActionDispatch::HTTP::Headersschneems2014-05-071-0/+6
| | | | |
| * | | | [ci skip] document type_cast_for_writeschneems2014-05-072-0/+5
| | | | |
| * | | | Fix Formatting in AR ReadmeGaurish Sharma2014-05-041-2/+2
| | | | | | | | | | | | | | | Don't make free form text appear in code blocks [ci skip]