Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove deprecation warning | eileencodes | 2014-05-13 | 2 | -6/+4 |
| | | | | | This deprecation was released in 4.1.0 and can be removed for 4.2.0, deprecation message / handling is no longer necessary. | ||||
* | Merge pull request #15072 from mjtko/fix/issue-15064 | Rafael Mendonça França | 2014-05-13 | 3 | -1/+14 |
|\ | | | | | [Fixes #15064] Calling number_to_delimited on a ActiveSupport::SafeBuffer results in mangled output | ||||
| * | Require active_support/core_ext/string/output_safety and use html_safe ↵ | Mark J. Titorenko | 2014-05-12 | 1 | -1/+2 |
| | | | | | | | | rather than use non-public SafeBuffer API. | ||||
| * | Use block parameter rather than `$1` during `gsub!` so ↵ | Mark J. Titorenko | 2014-05-12 | 3 | -1/+13 |
| | | | | | | | | | | | | `ActiveSupport::SafeBuffer` values aren't mangled. Fixes #15064 | ||||
* | | Merge pull request #15073 from ifyouseewendy/master | Rafael Mendonça França | 2014-05-13 | 1 | -5/+32 |
|\ \ | | | | | | | Update and add tests in array_ext_test.rb | ||||
| * | | Update require in `array_ext_test.rb` | wendi | 2014-05-13 | 1 | -3/+2 |
| | | | | | | | | | | | | Removed `FIMXE` tag to require necessary file but not the whole core_ext | ||||
| * | | Update and add tests in array_ext_test.rb | wendi | 2014-05-13 | 1 | -2/+30 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix `test_to_with_instruct` typo to `test_to_xml_with_instruct` - Rename `test_to_xml` to `test_to_xml_with_hash_elements` to make test name more specific. - Add `test_to_xml_with_non_hash_elements` and `test_to_xml_with_non_hash_different_type_elements` `to_xml` behaves different when containing elements are same and different types. - Add `test_to_xml_with_indent_set` | ||||
* | | Do not check defined?(CGI) on every call #to_query | printercu | 2014-05-13 | 1 | -1/+1 |
| | | |||||
* | | flip conditional to use if/else instead of unless/else | eileencodes | 2014-05-12 | 1 | -3/+3 |
|/ | | | | Use if/else instead of unless/else so conditional reads better. | ||||
* | Tidy up implementation of #15010 | Andrew White | 2014-05-11 | 2 | -11/+7 |
| | |||||
* | Make TimeZone#parse behave more like Time#parse. | Ulysse Carion | 2014-05-11 | 3 | -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. | ||||
* | Keep method's description/documentation consistent [ci skip] | Santosh Wadghule | 2014-05-11 | 1 | -3/+3 |
| | |||||
* | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2014-05-10 | 1 | -2/+5 |
|\ | |||||
| * | [ci skip] doc ActiveSupport::TimeWithZone#to_s | schneems | 2014-05-09 | 1 | -2/+5 |
| | | | | | | Current docs are wrong. Does not accept strftime inputs. | ||||
* | | Change 'a' to 'an' [ci skip] | Santosh Wadghule | 2014-05-09 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #12746 from coreyward/master | Rafael Mendonça França | 2014-05-07 | 2 | -15/+36 |
|\ \ | | | | | | | | | | Fix Hash#deep_merge bug and improve documentation — resolves #12738 | ||||
| * | | Fix Hash#deep_merge bug and improve documentation — resolves #12738 | Corey Ward | 2013-12-09 | 2 | -11/+31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously merging into a hash with a falsy value would not result in the merge-block being called. The fix is simply to check for presence of the key in the hash. The documentation example for `deep_merge` now appropriately demonstrates what a deep merge does. | ||||
* | | | several enhancements to humanize [closes #12288] | Xavier Noria | 2014-05-06 | 3 | -12/+46 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Strips leading underscores. * Changes some unnecessary gsub!s to sub!s. * Replaces some anchors ^, $ with \A, \z. * Documents that human inflection rules are applied. * Documents that words are downcased except acronyms. * Adds an example with an acronym. * Rewords docs. | ||||
* | | | Improve CHANGELOG [ci skip] | Rafael Mendonça França | 2014-05-04 | 1 | -2/+2 |
| | | | |||||
* | | | No need the else clause | Rafael Mendonça França | 2014-05-04 | 1 | -2/+0 |
| | | | |||||
* | | | Merge pull request #14949 from bogdan/empty-hash-array-parameterization | Rafael Mendonça França | 2014-05-04 | 3 | -9/+22 |
|\ \ \ | | | | | | | | | [Fixes #14948] Hash#to_query: right serialization for empty hash and array | ||||
| * | | | [Fixes #14948] Hash#to_query: Changed a way how empty hash and empty array ↵ | Bogdan Gusiev | 2014-05-03 | 3 | -9/+22 |
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | are serialized Empty Hash or Array should not present in serialization result {a: []}.to_query # => "" {a: {}}.to_query # => "" For more info see #14948. | ||||
* / | | Remove deprecated file(`active_support/core_ext/object/to_json.rb`) and its ↵ | Kuldeep Aggarwal | 2014-05-04 | 2 | -14/+0 |
|/ / | | | | | | | test case. | ||||
* | | Warning removed for missmatched indentation | Arun Agrawal | 2014-04-26 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #14840 from akshay-vishnoi/doc_changes | Arthur Nogueira Neves | 2014-04-23 | 1 | -2/+2 |
|\ \ | | | | | | | Correct comment [ci skip] | ||||
| * | | Correct comment [ci skip] | Akshay Vishnoi | 2014-04-23 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #14801 from kuldeepaggarwal/fix-string-inflection | Rafael Mendonça França | 2014-04-22 | 2 | -1/+6 |
|\ \ \ | | | | | | | | | Fix inconsistent behavior from String#pluralize | ||||
| * | | | Fix inconsistent behavior from String#pluralize | Kuldeep Aggarwal | 2014-04-19 | 2 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before: When calling String#pluralize with count=1 then it returned same string, but with count other than 1, returned new string. After: String#pluralize always return a new string. => Prevent mutation of a string inadvertently. | ||||
* | | | | Changed miss-leading comment [ci skip] | Arun Agrawal | 2014-04-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After this 21dbe6f39b57f52967e92716dbd5e2b894e7a64c 2.1.1 :001 > 'business'.classify => "Business" 2.1.1 :004 > 'calculus'.classify => "Calculu" 2.1.1 :005 > | ||||
* | | | | [ci-skip] correct the classify example's output | Kuldeep Aggarwal | 2014-04-21 | 1 | -1/+1 |
| |/ / |/| | | |||||
* | | | [ci skip] builtin -> built-in | Akshay Vishnoi | 2014-04-20 | 2 | -3/+3 |
| | | | |||||
* | | | Merge pull request #14805 from akshay-vishnoi/structure-change | Andrew White | 2014-04-19 | 1 | -0/+0 |
|\ \ \ | | | | | | | | | multibyte_conformance.rb --> multibyte_conformance_test.rb | ||||
| * | | | multibyte_conformance.rb --> multibyte_conformance_test.rb | Akshay Vishnoi | 2014-04-19 | 1 | -0/+0 |
| |/ / | |||||
* / / | "subhash" --> "sub-hash" | Akshay Vishnoi | 2014-04-19 | 1 | -1/+1 |
|/ / | |||||
* | | Fix inconsistent behavior from String#first/#last | Ernie Miller | 2014-04-18 | 2 | -4/+16 |
| | | | | | | | | | | | | | | While calling String#first or String#last with zero or a Fixnum < the string's length returns a new string, a Fixnum >= the string's length returns the string itself. This inconsistency can lead to inadvertent mutation of a string. | ||||
* | | Merge branch 'master' of github.com:rails/docrails | Vijay Dev | 2014-04-18 | 2 | -1/+11 |
|\ \ | |||||
| * | | Correct docs as singlton true is not returned here | Steven Harman | 2014-04-11 | 1 | -1/+1 |
| | | | | | | | | | | | | [ci skip] | ||||
| * | | Document LoadError core extensions | Steven Harman | 2014-04-11 | 1 | -1/+4 |
| | | | | | | | | | | | | [ci skip] | ||||
| * | | Add documentation for Thread#freeze | Steven Harman | 2014-04-06 | 1 | -0/+7 |
| | | | |||||
* | | | Object#duplicable? | Akshay Vishnoi | 2014-04-16 | 2 | -16/+12 |
| | | | | | | | | | | | | | | | | | | 1. Improve tests 2. Remove unnecessary constant 3. Add docs for BigDecimal#duplicable? | ||||
* | | | Move tests for deep_dup and duplicable to object directory | Akshay Vishnoi | 2014-04-13 | 2 | -0/+0 |
| | | | |||||
* | | | Merge pull request #14646 from deivid-rodriguez/provide_byebug_by_default | Rafael Mendonça França | 2014-04-11 | 2 | -2/+2 |
|\ \ \ | | | | | | | | | Improve debugging support | ||||
| * | | | Keep debugger support only for rubies < 2.0.0 | David Rodríguez de Dios | 2014-04-08 | 2 | -2/+2 |
| | | | | |||||
* | | | | Add more test case for #demodulize, Improve documentation | Akshay Vishnoi | 2014-04-11 | 3 | -0/+5 |
| | | | | |||||
* | | | | Merge branch 'master' into rm-uuid-fixtures | Rafael Mendonça França | 2014-04-10 | 6 | -7/+116 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: activerecord/CHANGELOG.md activesupport/CHANGELOG.md | ||||
| * \ \ \ | Merge pull request #11656 from emre-basala/xml_mini_test | Rafael Mendonça França | 2014-04-10 | 1 | -1/+58 |
| |\ \ \ \ | | | | | | | | | | | | | Add tests to ActiveSupport:XmlMini to_tag method | ||||
| | * | | | | Add tests to ActiveSupport:XmlMini to_tag method | emre-basala | 2013-08-07 | 1 | -1/+58 |
| | | | | | | |||||
| * | | | | | Merge pull request #11411 from dscataglini/master | Aaron Patterson | 2014-04-09 | 1 | -6/+12 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Active support callback's before/after/around filters are not correctly making their singleton methods private | ||||
| | * | | | | | private method doesn't work for singleton methods defined this way | Diego Scataglini | 2013-07-12 | 1 | -6/+12 |
| | | | | | | | |||||
| * | | | | | | Add missing require so requiring `active_support/cache` works again. | Lucas Mazza | 2014-04-09 | 1 | -0/+1 |
| | | | | | | |