aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
Commit message (Collapse)AuthorAgeFilesLines
* docs, hide inflector comment targeting only contributors. [ci skip]Yves Senn2014-02-111-1/+3
| | | | | | | This is a follow up to: https://github.com/rails/rails/commit/07c70245a128cfe42f134be8759963dc98f1a63e As suggested by @fxn this comment should not be visible in the API: https://github.com/rails/rails/commit/07c70245a128cfe42f134be8759963dc98f1a63e#commitcomment-5331658
* Fix tidy_bytes for JRubyJustin Coyne2014-02-102-3/+10
| | | | | The previous implementation was broken because JRuby (1.7.10) doesn't have a code converter for UTF-8 to UTF8-MAC.
* docs, mention that the current inflection rules are frozen. [ci skip]Yves Senn2014-02-101-0/+4
| | | | Closes #13993.
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-02-092-2/+4
|\ | | | | | | | | | | | | Conflicts: guides/source/active_record_validations.md guides/source/api_documentation_guidelines.md guides/source/configuring.md
| * Specify what #starts_with? we're talking about. Also added a note whatZachary Scott2014-02-091-1/+2
| | | | | | | | kind of exception we should expect for this internal comment.
| * Fix grammar of internal comment and modify it's locationZachary Scott2014-02-091-1/+2
| |
* | use feature detection to decide which implementation to useAaron Patterson2014-02-081-1/+1
| | | | | | | | Decouple the code from the particular Ruby version.
* | Fixed an issue where reloading of removed dependencies would cause an ↵Noah Lindner2014-02-082-0/+20
| | | | | | | | unexpected circular dependency error
* | synchronize 4.1 release notes with CHANGELOGS. [ci skip]Yves Senn2014-02-061-2/+3
| | | | | | | | /cc @chancancode
* | Fix to_query with empty arrays tooRafael Mendonça França2014-02-062-1/+8
| |
* | Add CHANGELOG entryRafael Mendonça França2014-02-051-0/+14
| | | | | | | | Closes #13909
* | Refatoring the method to avoid shot-circuit returnRafael Mendonça França2014-02-052-4/+9
| |
* | Test with a blank valueRafael Mendonça França2014-02-051-2/+2
| |
* | Move test to the right fileRafael Mendonça França2014-02-052-11/+9
| |
* | Fixed "Hash#to_param confused by empty hash values #13892"Hincu Petru2014-02-052-0/+12
| |
* | fix interplay of humanize and html_escapeSean Walbran2014-02-052-1/+5
| |
* | Return sized enumerator from Enumerable#index_byMarc-Andre Lafortune2014-02-052-1/+5
| |
* | Return sized enumerator from Batches#find_eachMarc-Andre Lafortune2014-02-051-1/+1
| |
* | Remove obsolete test (builtin group_by is now used)Marc-Andre Lafortune2014-02-051-20/+0
| |
* | Remove obsolete line (was needed for Ruby 1.8.7 support)Marc-Andre Lafortune2014-02-051-1/+0
| |
* | docs, be clear that `options` is a hash. Closes #11904. [ci skip].Yves Senn2014-02-031-1/+1
| |
* | Assert the file is deprecatedRafael Mendonça França2014-02-011-1/+1
| |
* | Fix isolated testsRafael Mendonça França2014-02-011-0/+1
| |
* | Merge pull request #13911 from davidcelis/remove-bigdecimal-serializationRafael Mendonça França2014-02-015-28/+33
|\ \ | | | | | | | | | | | | | | | | | | Deprecate custom BigDecimal serialization Conflicts: activesupport/CHANGELOG.md
| * | Remove BigDecimal#to_dDavid Celis2014-02-012-12/+0
| | | | | | | | | | | | | | | | | | This was backported for Ruby 1.8 support and is no longer needed. Signed-off-by: David Celis <me@davidcel.is>
| * | Don't require BigDecimal serialization extensionDavid Celis2014-02-015-16/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rails currently provides an extension to BigDecimal that redefines how it is serialized to YAML. However, as noted in #12467, this does not work as expected. When ActiveSupport is required, BigDecimal YAML serialization does not maintain the object type. It instead ends up serializing the number represented by the BigDecimal itself which, when loaded by YAML later, becomes a Float: ```ruby require 'yaml' require 'bigdecimal' yaml = BigDecimal('13.37').to_yaml YAML.load(yaml).class require 'active_support/all' yaml = BigDecimal('13.37').to_yaml YAML.load(yaml).class ``` @tenderlove posits that we should deprecate the custom BigDecimal serialization and let Ruby handle it. For the time being, users who require this serialization for backwards compatibility can manually `require 'active_support/core_ext/big_decimal/yaml_conversions'`. This will close #12467 and deprecate the custom BigDecimal#to_yaml. Signed-off-by: David Celis <me@davidcel.is>
* | | Merge pull request #12769 from birkirb/masterRafael Mendonça França2014-02-013-2/+135
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Boolean parser blows up on a Fixnum. Conflicts: activesupport/CHANGELOG.md
| * | Fix breakage in XmlMiniBirkir A. Barkarson2013-12-233-2/+136
| | | | | | | | | | | | | | | | | | | | | - Boolean parsing breaks on non strings (i.e. integer 1|0) - Symbol parsing breaks on non strings. - BigDecimal parsing breaks due to missing require. - Update changelog.
* | | Maintain the current timezone in wrap_with_time_zoneAndrew White2014-01-313-7/+16
| | | | | | | | | | | | | | | | | | | | | Extend the solution from the fix for #12163 to the general case where `Time` methods are wrapped with a time zone. Fixes #12596.
* | | fix typo and indent. [ci skip]Yves Senn2014-01-301-1/+1
| | |
* | | Improve documentation [ci skip]Rafael Mendonça França2014-01-301-3/+4
| | |
* | | Remove automatic removal of Date/Time stubs after each test caseRafael Mendonça França2014-01-304-9/+17
| | | | | | | | | | | | | | | | | | This behavior is only work out-of-box with minitest and also add a downside to run after each test case, even if we don't used the travel or travel_to methods
* | | Add `travel_back` to remove stubs from `travel` and `travel_to`Rafael Mendonça França2014-01-303-3/+30
| | |
* | | tidy CHANGELOGs [ci skip]Yves Senn2014-01-301-2/+2
| | |
* | | Use each_valueRafael Mendonça França2014-01-291-1/+1
| | |
* | | Store the singleton_class in a local variableRafael Mendonça França2014-01-291-3/+4
| | |
* | | Change the class and method visibilityRafael Mendonça França2014-01-291-9/+13
| | |
* | | Use instance method instead of before hookRafael Mendonça França2014-01-291-9/+8
| | |
* | | Alias the original method first to avoid warningsRafael Mendonça França2014-01-291-2/+7
| | |
* | | Implement a simple stub feature to use in the Time travel helpersRafael Mendonça França2014-01-291-4/+44
| | |
* | | Fix documentation of new controller filters api [ci skip]Kassio Borges2014-01-291-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | The api for filters with classes change and the guides weren't updated. Now the class must respond for methods with the same name as the filter, so the `before_action` calls a `before` method, and so on. The method `#filter` has been deprecated in 4.0.0 and has been removed in 4.1.0: #7560
* | | Allow session serializer key in config.session_storeLukasz Sarnacki2014-01-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MessageEncryptor has :serializer option, where any serializer object can be passed. This commit make it possible to set this serializer from configuration level. There are predefined serializers (:marshal_serializer, :json_serialzier) and custom serializer can be passed as String, Symbol (camelized and constantized in ActionDispatch::Session namepspace) or serializer object. Default :json_serializer was also added to generators to provide secure defalt.
* | | Make ActiveSupport::TimeWithZone#xmlschema consistentAndrew White2014-01-262-2/+6
| | | | | | | | | | | | | | | | | | Both Time#xmlschema and DateTime#xmlschema can accept nil values for the fraction_digits parameter. This commit makes this so for TimeWithZone values as well.
* | | Add support for JSON time_precision to Time and DateTimeAndrew White2014-01-264-7/+25
| | |
* | | Add CHANGELOG entry for #11464Andrew White2014-01-261-0/+9
| | |
* | | Rename subsecond_fraction_digits option to time_precisionAndrew White2014-01-263-8/+8
| | |
* | | Consolidate JSON encoding tests in one fileAndrew White2014-01-262-46/+48
| | |
* | | Customize subsecond digits when encoding DateWithTimeParker Selbert2014-01-263-9/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The subsecond fraction digits had been hardcoded to 3. This forced all timestamps to include the subsecond digits with no way to customize the value. While the subsecond format is part of the ISO8601 spec, it is not adhered to by all parsers (notably mobile clients). This adds the ability to customize the number of digits used, optionally setting them to 0 in order to eliminate the subsecond fraction entirely: ActiveSupport::JSON::Encoding.subsecond_fraction_digits = 0
* | | Maintain current timezone when changing time during DST overlapAndrew White2014-01-264-3/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently if a time is changed during DST overlap in the autumn then the method `period_for_local` will return the DST period. However if the original time is not DST then this can be surprising and is not what is generally wanted. This commit changes that behavior to maintain the current period if it's in the list of periods returned by `periods_for_local`. It is possible to alter the behavior of `period_for_local` by specifying a second argument but since we may be change from another time that could be either DST or not then this would give inconsistent results. Fixes #12163.
* | | Fix secrets.yml path in exception messageCarlos Antonio da Silva2014-01-201-9/+7
| | | | | | | | | | | | The file is config/secrets.yml, not config/initializers/secrets.yml.