aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #9204 from ranjaykrishna/col-probAaron Patterson2013-02-128-1/+43
|\ | | | | schema dumper tests now conducted by ActiveRecord::Base.Connection
| * checking in the abstractions for valid type checking:Ranjay Krishna2013-02-128-1/+43
| |
* | Merge pull request #9206 from ranjaykrishna/use_define_methodCarlos Antonio da Silva2013-02-121-18/+13
|\ \ | | | | | | Use define method instead of class_eval
| * | reverted back our changes and added in the new define_methodRanjay Krishna2013-02-121-18/+13
| |/
* | test for regression from a712e08ebe21f6d8653a0e6602df2e0f5d40d9caAaron Patterson2013-02-111-0/+6
| |
* | Merge pull request #9250 from senny/8583_fix_engines_documentation_example_codeSteve Klabnik2013-02-111-4/+12
|\ \ | | | | | | fix example code in engines guide
| * | fix the example code in the engines guide. closes #8583.Yves Senn2013-02-111-0/+8
| | |
| * | remove trailing whitespace from engines guideYves Senn2013-02-111-4/+4
| | |
* | | Merge pull request #9247 from lest/store-moduleCarlos Antonio da Silva2013-02-114-12/+54
|\ \ \ | |/ / |/| | define Active Record Store accessors in a module
| * | define Active Record Store accessors in a moduleSergey Nartimov2013-02-114-12/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow store accessors to be overrided like other attribute methods, e.g.: class User < ActiveRecord::Base store :settings, accessors: [ :color, :homepage ], coder: JSON def color super || 'red' end end
* | | Improve changelog entry from #9221 [ci skip]Carlos Antonio da Silva2013-02-112-18/+16
| | |
* | | Add changelog entry for #9177 [ci skip]Carlos Antonio da Silva2013-02-111-4/+11
| | | | | | | | | | | | Add test:all and test:all:db rake tests to speed up full test runs.
* | | Merge pull request #9221 from thenickcox/image_alt_attributeCarlos Antonio da Silva2013-02-113-4/+40
|\ \ \ | |/ / |/| | Improve img alt attribute for screen readers
| * | Improve img alt attribute for screen readersthenickcox2013-02-093-4/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, the img_alt method in ActionView keeps underscores in the alt attribute. Because underscores are pronounced in Apple's VoiceOver Utility, this has serious implications for accessibility. This patch makes underscored or hyphenated file names (both common in projects) read more naturally in screen readers by replacing them with spaces. See method documentation for details. Added documentation to image_alt method
* | | fixing bit string testAaron Patterson2013-02-101-3/+3
| | |
* | | Merge pull request #9245 from vasconcelloslf/fix_guide_typoSteve Klabnik2013-02-101-1/+1
|\ \ \ | | | | | | | | fix a typo on the engine guide
| * | | fix a typo on the engine guideLuis Vasconcellos2013-02-111-1/+1
|/ / /
* | | Merge pull request #9240 from tricknotes/supress-warningGuillermo Iguaran2013-02-101-0/+2
|\ \ \ | | | | | | | | Supress warning about method redifinition
| * | | Supress warning about method redifinitionRyunosuke SATO2013-02-111-0/+2
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | In i18n gem, the following methods are defined. - `Hash#except` - `Hash#slice` But if there are defined already, i18n skips these definitions. So these definition by `active_support` are required before `require 'i18n'`.
* | | Merge pull request #9238 from norman/unicode_62Carlos Antonio da Silva2013-02-102-1/+1
|\ \ \ | | | | | | | | Update to latest Unicode data.
| * | | Update to latest Unicode data.Norman Clarke2013-02-102-1/+1
| | | | | | | | | | | | | | | | Release notes at: http://www.unicode.org/versions/Unicode6.2.0/
* | | | Merge pull request #8643 from tricknotes/remove-method-redefined-warningAndrew White2013-02-101-0/+1
|\ \ \ \ | | | | | | | | | | Remove method redefined warning
| * | | | Remove method redefined warningRyunosuke SATO2013-02-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In `i18n` gem, the method definition of `Hash#deep_merge!` is skipped when it is already defined. - warning: method redefined; discarding old deep_merge!
* | | | | Merge pull request #7730 from beyond/gzipXavier Noria2013-02-103-2/+25
|\ \ \ \ \ | | | | | | | | | | | | added compress options for gzip
| * | | | | added compress options for gzipBeyond2013-02-103-2/+25
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | added test for compress options of gzip update changelog
* | | | | Prefer Ruby 2.0; require 1.9.3+Jeremy Kemper2013-02-094-9/+9
| | | | |
* | | | | Merge pull request #9234 from senny/9231_no_numbers_in_route_namespaces_allowedCarlos Antonio da Silva2013-02-092-1/+13
|\ \ \ \ \ | | | | | | | | | | | | The `:controller` option for routes can contain numbers. closes #9231.
| * | | | | the `:controller` option for routes can contain numbers. closes #9231.Yves Senn2013-02-092-1/+13
| | | | | |
* | | | | | Merge pull request #9233 from rahul100885/masterCarlos Antonio da Silva2013-02-093-1/+6
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Added notice message for destroy method in scaffold
| * | | | | Added notice message for destroy method in scaffoldRahul P. Chaudhari2013-02-103-1/+6
| | | | | |
* | | | | | Update activerecord/CHANGELOG.mdGuillermo Iguaran2013-02-091-1/+1
| | | | | |
* | | | | | Merge pull request #9232 from robertomiranda/where-with-empty-hashGuillermo Iguaran2013-02-091-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Use IN operator like Arel for empty hash in where clause
| * | | | | Use IN operator like arel for empty hash in where clauserobertomiranda2013-02-091-1/+1
|/ / / / /
* | | | | Add missing require to APCarlos Antonio da Silva2013-02-081-0/+1
| | | | |
* | | | | Reverting e170014113 (Change behaviour with empty hash in where clause)Guillermo Iguaran2013-02-083-12/+3
| | | | |
* | | | | We don't need a CHANGELOG entry for an issue of something that was not ↵Santiago Pastorino2013-02-081-5/+0
| | | | | | | | | | | | | | | | | | | | released yet
* | | | | Merge pull request #9196 from AndreyChernyh/fix-cookies-with-null-sessionSantiago Pastorino2013-02-084-5/+49
|\ \ \ \ \ | | | | | | | | | | | | Fix #9168 Initialize NullCookieJar with all options needed for KeyGenerator
| * | | | | Fix #9168 Initialize NullCookieJar with all options needed for KeyGeneratorAndrey Chernih2013-02-084-5/+49
| | | | | |
* | | | | | Bump rack dependency to 1.5.2Santiago Pastorino2013-02-081-1/+1
| | | | | |
* | | | | | Reverting 16f6f25 (Change behaviour with empty array in where clause)Guillermo Iguaran2013-02-086-14/+13
|/ / / / /
* | | | | Improve changelog entries in ARCarlos Antonio da Silva2013-02-081-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Describe better the changes related to raising errors with empty array/hash values in where clauses. [ci skip]
* | | | | Merge pull request #9216 from robertomiranda/where-with-empty-arrayGuillermo Iguaran2013-02-086-13/+14
|\ \ \ \ \ | | | | | | | | | | | | Activer Record: Change behaviour with empty array in where clause
| * | | | | Change behaviour with empty array in where clauserobertomiranda2013-02-086-13/+14
|/ / / / /
* | | | | Merge pull request #9220 from robertomiranda/where-with-empty-hashMichael Koziarski2013-02-073-3/+11
|\ \ \ \ \ | | | | | | | | | | | | Active Record: Change behaviour with empty hash in where clause
| * | | | | Change behaviour with empty hash in where clauserobertomiranda2013-02-083-3/+11
|/ / / / /
* | | | | Merge pull request #9185 from tricknotes/fix-article-for-generator-nameCarlos Antonio da Silva2013-02-071-2/+2
|\ \ \ \ \ | |_|_|/ / |/| | | | Fix article for generator name
| * | | | Fix article for generator nameRyunosuke SATO2013-02-071-2/+2
| | | | | | | | | | | | | | | | | | | | Use 'some' instead of 'a/an'.
* | | | | Merge pull request #9207 from dylanahsmith/mysql-quote-numericGuillermo Iguaran2013-02-078-14/+60
|\ \ \ \ \ | | | | | | | | | | | | active_record: Quote numeric values compared to string columns.
| * | | | | active_record: Quote numeric values compared to string columns.Dylan Smith2013-02-078-14/+60
| | | | | |
* | | | | | Skip schema dumper extensions test if connection does not support itCarlos Antonio da Silva2013-02-071-0/+1
|/ / / / / | | | | | | | | | | | | | | | | | | | | Travis failed because the postgresql version installed there does not support extensions, so we just need to skip this for now.