aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Collapse)AuthorAgeFilesLines
* Remove circular require of time/zonesOscar Del Ben2012-04-291-1/+0
|
* Add missing require in Active Support time zones (fixes #5854)Piotr Sarnacki2012-04-151-0/+1
| | | | | I also removed the other require as it's already present in `activesupport/core_ext/time/calculations`
* probably should require the objects we monkey patch.Aaron Patterson2012-04-101-0/+1
|
* bigdecimal can be duped on Ruby 2.0Aaron Patterson2012-04-101-0/+12
| | | | | | Conflicts: activesupport/test/core_ext/duplicable_test.rb
* Stop SafeBuffer#clone_empty from issuing warningsCarlos Antonio da Silva2012-03-021-3/+1
| | | | | | | | | | | | Logic in clone_empty method was dealing with old @dirty variable, which has changed by @html_safe in this commit: https://github.com/rails/rails/commit/139963c99a955520db6373343662e55f4d16dcd1 This was issuing a "not initialized variable" warning - related to: https://github.com/rails/rails/pull/5237 The logic applied by this method is already handled by the [] override, so there is no need to reset the variable here.
* Merge branch '3-2-2' into 3-2-stableAaron Patterson2012-03-011-16/+22
|\ | | | | | | | | | | | | | | | | | | | | | | | | * 3-2-2: bumping to 3.2.2 Ensure [] respects the status of the buffer. Merge pull request #4834 from sskirby/fix_usage_of_psql_in_db_test_prepare Merge pull request #5084 from johndouthat/patch-1 updating RAILS_VERSION delete vulnerable AS::SafeBuffer#[] use AS::SafeBuffer#clone_empty for flushing the output_buffer add AS::SafeBuffer#clone_empty fix output safety issue with select options
| * Ensure [] respects the status of the buffer.José Valim2012-02-291-12/+18
| |
| * delete vulnerable AS::SafeBuffer#[]Akira Matsuda2012-02-201-6/+0
| |
| * add AS::SafeBuffer#clone_emptyAkira Matsuda2012-02-201-0/+6
| |
* | call binmode on the tempfile for Ruby 1.8 compatibilityAaron Patterson2012-02-271-1/+2
| |
* | Fixing Windows asset tag helper test failureRalph Shnelvar2012-02-251-1/+1
|/ | | | | | | | | | | | In asset_tag_helper_test.rb there is an assert on the number of bytes in a concatenated file. This test failed because Windows converts \n to \r\n as the default for "w". This is different than in *nix systems where there is no conversion done. THe test that failed was test_caching_stylesheet_link_tag_when_caching_on Using bin mode fixes this behavior on windows and makes no change on the *nix systems.
* Update Time#change docs to reflect the options it usesEric Oestrich2012-02-181-1/+1
| | | | [ci skip]
* GH #4883. Optional start_day argument for Time#all_weekkennyj2012-02-051-3/+3
|
* Merge pull request #4673 from carlosantoniodasilva/validation-guides-update-3-2Vijay Dev2012-01-251-2/+2
|\ | | | | Validation guides update 3 2
| * Change ActiveRecord::Errors to ActiveModel::Errors in guidesCarlos Antonio da Silva2012-01-251-2/+2
| | | | | | | | | | | | | | Use ActiveModel::Errors in inflection example docs as well. Also fixes wrong information and link to locale file related to Errors#full_messages in I18n guide.
* | Merge pull request #4514 from brainopia/update_timezone_offetsAaron Patterson2012-01-241-1/+1
|/ | | | Update time zone offset information
* Pass a symbol instead of a block. This is faster and more concise.Semyon Perepelitsa2012-01-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At least Ruby 1.8.7 is required which is ok since 3.2. Benchmark: ```ruby require "benchmark" enum = 1..10_000 N = 100 Benchmark.bm do |x| x.report "inject block" do N.times do enum.inject { |sum, n| sum + n } end end x.report "inject symbol" do N.times do enum.inject(:+) end end end ``` Result: ``` user system total real inject block 0.160000 0.000000 0.160000 ( 0.179723) inject symbol 0.090000 0.000000 0.090000 ( 0.095667) ```
* fixes in api docsVijay Dev2012-01-131-1/+1
|
* Merge pull request #4283 from lest/fix-singleton-checkingAaron Patterson2012-01-031-1/+1
| | | | use correct variant of checking whether class is a singleton
* adds a comments that clarifies why Range#include? chooses the comparison ↵Xavier Noria2011-12-301-0/+1
| | | | operator
* refactor Range#include? to handle ranges with floatsSergey Nartimov2011-12-301-3/+2
| | | | | | Conflicts: activesupport/lib/active_support/core_ext/range/include_range.rb
* Revert "Further simplify singleton_class checking in class_attribute"Jon Leighton2011-12-281-1/+14
| | | | | | This reverts commit 520918aad9b84eee807eb42fcb32f57c152d50e0. Reason: build failure
* Further simplify singleton_class checking in class_attributeJames Miller2011-12-281-14/+1
|
* delegating and deprecating logger#silence. fixes #4159Aaron Patterson2011-12-241-0/+2
|
* Revert "Added Enumerable#pluck to wrap the common pattern of ↵Aaron Patterson2011-12-221-7/+0
| | | | | | collect(&:method) *DHH*" This reverts commit 4d20de8a50d889a09e6f5642984775fe796ca943.
* Remove duplicate html_escape docsJeremy Kemper2011-12-111-10/+1
|
* Use 1.9 native XML escaping to speed up html_escape and shush regexp warningsJeremy Kemper2011-12-111-15/+36
| | | | | | | | | | | | length user system total real before 6 0.010000 0.000000 0.010000 ( 0.012378) after 6 0.010000 0.000000 0.010000 ( 0.012866) before 60 0.040000 0.000000 0.040000 ( 0.046273) after 60 0.040000 0.000000 0.040000 ( 0.036421) before 600 0.390000 0.000000 0.390000 ( 0.390670) after 600 0.210000 0.000000 0.210000 ( 0.209094) before 6000 3.750000 0.000000 3.750000 ( 3.751008) after 6000 1.860000 0.000000 1.860000 ( 1.857901)
* fix nodocsVijay Dev2011-12-091-1/+1
|
* Restore performance of ERB::Util.html_escapeJon Jensen2011-12-031-1/+1
| | | | | | | Revert html_escape to do a single gsub again, but add the "n" flag (no language, i.e. not multi-byte) to protect against XSS via invalid utf8 Signed-off-by: José Valim <jose.valim@gmail.com>
* Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*David Heinemeier Hansson2011-12-021-0/+7
|
* Module#synchronize is deprecated with no replacement. Please use `monitor` ↵Aaron Patterson2011-11-291-0/+2
| | | | from ruby's standard library.
* Merge pull request #3767 from tadast/object_inYehuda Katz2011-11-261-7/+17
|\ | | | | Object#in? also accepts multiple parameters
| * Object#in? also accepts multiple parametersTadas Tamošauskas2011-11-261-7/+17
| |
* | Adds Time#sunday methodVijay Dev2011-11-261-0/+6
| |
* | Convert aliases monday and sunday to methodsVijay Dev2011-11-262-3/+18
| | | | | | | | | | | | | | | | A recent change to beginning_of_week and end_of_week added an argument that can be used to specify the week's starting day as a symbol. Now these methods were aliased as monday and sunday respectively which as a consequence of the argument addition, made calls like obj.monday(:sunday) possible. This commit makes them methods on their own.
* | minor doc changesVijay Dev2011-11-261-3/+3
| |
* | some tweaks to PR#3547. [Closes #3547]Xavier Noria2011-11-251-7/+12
| |
* | API docstrings updated with default value infogregolsen2011-11-252-6/+6
| |
* | beginning_of_week extended in both Time and Date so that to return week ↵gregolsen2011-11-252-16/+32
| | | | | | | | start based on start day that is monday by default
* | Merge branch 'master' into serializersJosé Valim2011-11-236-11/+112
|\ \
| * \ Merge pull request #3725 from marcandre/twz_eqlYehuda Katz2011-11-221-0/+10
| |\ \ | | |/ | |/| Fix inconsistencies with Time{WithZone}#{hash,eql?}
| | * Fix inconsistencies with Time{WithZone}#{hash,eql?}Marc-Andre Lafortune2011-11-221-0/+10
| | |
| * | updating API docstring so that user can infer default valuegregolsen2011-11-172-4/+4
| |/
| * fixes a typo (thanks to Alexey Vakhov)Xavier Noria2011-10-301-1/+1
| |
| * defines Module#qualified_const_(defined?|get|set) and String#deconstantizeXavier Noria2011-10-293-1/+81
| | | | | | | | | | | | | | | | | | | | This commit also implements a faster version of #demodulize I was unable to isolate with git add --patch. Not a big fan of the name #deconstantize. It complements #demodulize getting rid of the rightmost constant, hence the name, but it is unrelated to the well-known #constantize. So unsure. Could not come with anything better, please feel free to rename.
| * Merge branch 'master' of github.com:lifo/docrailsVijay Dev2011-10-201-3/+3
| |\
| | * Fixed misleading docs for String#to_formatted_s(:db)Martin Svalin2011-10-201-3/+3
| | |
| * | Merge pull request #3151 from zenprogrammer/pluralize_without_countJosé Valim2011-10-171-3/+14
| |\ \ | | |/ | |/| Added include_count parameter to pluralize.
| | * Modified String#pluralize to take an optional count parameter.Ryan Oblak2011-09-281-3/+14
| | |
* | | Don't unnecessarily use String eval.Jose and Yehuda2011-10-151-2/+2
|/ /