aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_core_extensions.md
Commit message (Collapse)AuthorAgeFilesLines
* Use consistent term [skip ci]Erol Fornoles2016-05-081-1/+1
|
* Remove log-related stuff from ActiveSupport::DependenciesAaron Ang2016-03-151-2/+0
| | | | | In this patch, all log-related stuff in `ActiveSupport::Dependencies` is removed because the logging is no longer useful.
* Deprecate `Module.local_constants`yui-knk2016-03-011-23/+0
| | | | | After Ruby 1.9, we can easily get the constants that have been defined locally by `Module.constants(false)`.
* [ci skip] Updating edge rails guides to include `on_weekday?` on Date, Time ↵Chirag Aggarwal2016-02-171-1/+5
| | | | | | and DateTime [ci skip] Adding `on_weekend?` method in edge rails guides
* rename to 'second_to_last' and 'third_to_last'Brian Christian2016-02-101-1/+1
|
* allow Array.penultimate and Array.antepenultiate access methodsBrian Christian2016-02-091-1/+1
|
* Add support for Petabyte and Exabyte in number to human sizeAkshay Vishnoi2015-12-221-6/+8
|
* ApplicationRecord documentation passGenadi Samokovarov2015-12-171-6/+6
| | | | | | | This is a pass over the documentation which fills the missing gaps of `ApplicationRecord`. [ci skip]
* Remove ActionController::TestCase from documentationeileencodes2015-12-121-8/+8
| | | | | | | | | | | | | | | | | | In Rails 5.1 `ActionController::TestCase` will be moved out of Rails into it's own gem. Please use `ActionDispatch::IntegrationTest` going foward. Because this will be moved to a gem I used `# :stopdoc:` instead of deleting the documentation. This will remove it from the Rails documentation but still leave the method documented for when we move it to a gem. Guides have been updated to use the routing structure used in Integration and all test examples have been updated to inherit from `ActionDispatch::IntegrationTest` instead of `ActionController::TestCase. Fixes #22496
* Parameterize with options to preserve case of stringSwaathi K2015-11-071-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | Added test cases Using kwargs instead of three seperate functions Updated parameterize in transliterate.rb Updated parameterize in transliterate.rb Added deprecation warnings and updating RDoc+Guide Misspelled separtor. Fixed. Deprecated test cases and added support to parameterize with keyword parameters Squashing commits. Fixed test cases and added deprecated test cases Small changes to Gemfile.lock and CHANGELOG Update Gemfile.lock
* document `try!` in ActiveSupport core ext guideSean Linsley2015-11-041-0/+7
| | | https://twitter.com/avdi/status/660141673993777156
* Fix minor typo from #20038Sean Griffin2015-10-201-2/+2
| | | | We use one period after spaces, not two.
* Merge pull request #20038 from imanel/numeric_prependSean Griffin2015-10-201-11/+3
|\ | | | | Use Module.prepend instead of alias_method and unify behavior of all Numeric extensions
| * Unify behavior of all Numeric extensions and use Module.prepend instead of ↵Bernard Potocki2015-05-281-11/+3
| | | | | | | | alias_method
* | [ci skip] Fix typo in deep_dup docsEric Turner2015-10-121-1/+1
| |
* | fix `to_time` output in ActiveSupport guide. Since ↵amitkumarsuroliya2015-09-201-3/+3
| | | | | | | | | | https://github.com/rails/rails/commit/48583f8bf74d1cefefea3cd6591bd546a9eaff6c , to_time returns times formatted as YYYY-MM-DD HH:MM:SS UTC [ci skip] `to_time` method returns in `YYYY-MM-DD HH:MM:SS UTC` format after this commit https://github.com/rails/rails/commit/48583f8bf74d1cefefea3cd6591bd546a9eaff6c .
* | Revert "[ci skip] Fix to `a, b or c` format"Vijay Dev2015-08-241-1/+1
| | | | | | | | | | | | | | This reverts commit 9876a16904f817e11713bc85479dd70da1de454b. Reason: Oxford commas are preferred. This is now documented in the documentation guidelines.
* | [ci skip] Fix to `a, b or c` formatyui-knk2015-07-301-1/+1
| |
* | Fix core_text -> core_extSeiei Miyagi2015-06-081-1/+1
| | | | | | | | [ci skip]
* | Add missing NOTE for Time extensions' locationPierre2015-06-071-0/+2
| |
* | Updating the guides for Enumerable#pluckKevin Deisz2015-05-281-0/+10
| |
* | Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-05-081-8/+8
|\ \ | |/ |/|
| * [ci skip] `deep_dup` is instance method of `Hash`yui-knk2015-04-221-1/+1
| |
| * [ci skip] `deep_dup` is instance method of `Array`yui-knk2015-04-211-1/+1
| |
| * [ci skip] Fix returned values of code sampleyui-knk2015-04-191-6/+6
| |
* | Merge pull request #19799 from yui-knk/fix/wrap_doc2Arthur Nogueira Neves2015-04-191-2/+2
|\ \ | | | | | | [ci skip] Fix docs and guide about 'Array.wrap'
| * | [ci skip] Fix docs and guide about 'Array.wrap'yui-knk2015-04-191-2/+2
| | |
* | | [ci skip] Replace `list` with `array`yui-knk2015-04-181-1/+1
|/ /
* / [ci skip] Update code example of Enumerable#withoutyui-knk2015-04-171-1/+1
|/
* [ci skip] Remove Extensions to `Proc` chapter sectionyui-knk2015-04-061-47/+0
| | | | `Proc#bind` is removed with 4.1 release
* [ci skip] Replace `reraised` with `not captured`yui-knk2015-04-021-1/+1
|
* Deprecate alias_method_chain in favour of Module#prependKir Shatrov2015-03-221-2/+2
| | | …as discussed #19413
* Add Enumerable#withoutTodd Bealmear2015-03-011-0/+11
|
* Merge pull request #19130 from yui-knk/fix/active_support_core_extensions2Yves Senn2015-02-281-1/+1
|\ | | | | [ci skip] Fix to comment
| * [ci skip] Fix to commentyui-knk2015-03-011-1/+1
| |
* | [ci skip] Fix to Stringyui-knk2015-03-011-1/+1
|/
* :nailcare:Akira Matsuda2015-02-261-1/+1
|
* remove reference to `Logger` core extensions from guide [ci skip]yuuji.yaginuma2015-01-181-44/+0
|
* Removed documentation of deprecated removed methods [ci skip]Vipul A M2015-01-171-18/+2
|
* - Changed `IN` to `ON` in markdown renderer conditionVipul A M2015-01-141-1/+1
| | | | - Changed `IN` to `ON` in all note sentences in guides.
* Deprecate `MissingSourceFile` in favor of `LoadError`.Rafael Mendonça França2015-01-021-3/+3
| | | | | `MissingSourceFile` was just an alias to `LoadError` and was not being raised inside the framework.
* warn about reading guides in GitHubXavier Noria2014-12-231-0/+2
| | | | References #18148.
* [ci skip] remove references to `Numeric#from_now`yuuji.yaginuma2014-12-031-18/+0
|
* Remove a reference to Ruby 1.9 in Guidesclaudiob2014-11-281-1/+1
| | | | | | | [ci skip] Now that Rails requires Ruby >= 2.0 there is no need to document Ruby 1.9.
* Minor English fixes in docs [ci skip]George Millo2014-11-171-1/+1
|
* The code was not up-to-dateAkira Matsuda2014-10-251-9/+7
|
* As of Unicode 6.3, Mongolian Vowel Separator is not whitespaceMatthew Draper2014-09-151-1/+1
| | | | | Ruby 2.2 knows this, and no longer matches it with [[:space:]], so it's not a good candidate for testing String#squish.
* :scissors: and from #16803 [ci skip]Zachary Scott2014-09-041-1/+1
|
* Document that method objects are not `duplicable?`Peter Jaros2014-09-041-1/+1
|
* copy edit AS core ext changes [ci skip]Vijay Dev2014-09-031-10/+9
|