aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Collapse)AuthorAgeFilesLines
* Add missing requireGuillermo Iguaran2015-01-091-0/+2
|
* Add SecureRandom.base58Guillermo Iguaran2015-01-091-0/+21
|
* Use Ruby's #include? to avoid relying on AS extensionCarlos Antonio da Silva2015-01-061-1/+1
| | | | | | | | The build has failed when running the date/time ext tests in isolation due to the missing extension, so better than adding a require is using just Ruby in this case. https://travis-ci.org/rails/rails/jobs/46107954#L1077
* Add #prev_day and #next_day as counterparts to #yesterday and #tomorrow for ↵George Claghorn2015-01-061-6/+16
| | | | Date, Time, and DateTime
* Add same_time option to #prev_week and #next_week for Date, Time, and DateTimeGeorge Claghorn2015-01-061-17/+22
|
* Add #on_weekend?, #next_weekday, and #prev_weekday methods to Date, Time, ↵George Claghorn2015-01-061-0/+25
| | | | | | | | | | | | | and DateTime `#on_weekend?` returns true if the receiving date/time falls on a Saturday or Sunday. `#next_weekday` returns a new date/time representing the next day that does not fall on a Saturday or Sunday. `#prev_weekday` returns a new date/time representing the previous day that does not fall on a Saturday or Sunday.
* adding documentation for 'remove_possible_method' and 'redefine_method' [ci ↵George Millo2015-01-051-0/+3
| | | | skip]
* Remove extra class_eval for Ruby 1.9Carlos Antonio da Silva2015-01-041-5/+2
|
* Remove Struct#to_h backportRafael Mendonça França2015-01-041-6/+3
|
* singleton_class? is already pressent at Ruby 2.2Rafael Mendonça França2015-01-041-8/+0
|
* Remove unneeded Time patch to support Ruby 1.9Rafael Mendonça França2015-01-042-30/+2
|
* Remove some comments about Ruby 1.9 behaviorsRafael Mendonça França2015-01-042-4/+4
|
* Remove debugger supportRafael Mendonça França2015-01-042-11/+3
| | | | | bebugger doesn't work with Ruby 2.2 so we don't need to support it anymore
* Remove hack to support BigDecimal in Ruby 1.9claudiob2015-01-041-11/+2
| | | | | Now that Rails requires Ruby >= 2.0, there is no need to check whether `BigDecimal` exists or not.
* remove files which is dependent on ruby1.9 as we do not support Ruby1.9Kuldeep Aggarwal2015-01-041-11/+3
| | | | | Conflicts: activerecord/lib/active_record/attribute_methods/read.rb
* Remove deprecated `ActiveSupport::SafeBuffer#prepend`Rafael Mendonça França2015-01-041-6/+0
|
* Remove deprecated methods at `Kernel`.Rafael Mendonça França2015-01-041-80/+0
| | | | `silence_stderr`, `silence_stream`, `capture` and `quietly`.
* Remove deprecated core_ext/big_decimal/yaml_conversions fileRafael Mendonça França2015-01-041-14/+0
|
* Fix a few typos [ci skip]Robin Dupret2015-01-031-1/+1
|
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-01-032-3/+23
|\
| * Better docs for NameErrorclaudiob2014-12-251-0/+14
| | | | | | | | | | | | Add examples for missing_name, missing_name? [ci skip]
| * Add docs for `Object.nil!`claudiob2014-12-221-3/+9
| | | | | | | | | | | | Also add doc examples for `Object.nil`. [ci skip]
* | Deprecate `MissingSourceFile` in favor of `LoadError`.Rafael Mendonça França2015-01-021-1/+3
| | | | | | | | | | `MissingSourceFile` was just an alias to `LoadError` and was not being raised inside the framework.
* | Remove thread variables backportRafael Mendonça França2015-01-021-86/+0
| | | | | | | | They are already present on Ruby 2.2
* | Do not check only for the Rails constantRafael Mendonça França2015-01-021-1/+1
| | | | | | | | | | This constant may be define for auxiliar gems like rails-html-sanitizer and these methods call will fail.
* | Fix comment typo in debugger.rbmntj2014-12-301-1/+1
| |
* | Removed Object#itself as it's implemented in ruby 2.2Cristian Bica2014-12-292-16/+0
| |
* | Just check if the buffer exists before changing itRafael Mendonça França2014-12-291-1/+3
| |
* | When trying to access a character on a string buffer object via `:[]`, if ↵Vipul A M2014-12-291-1/+3
|/ | | | | | | | | | | | | | | | the object being accessed currently returns `html_safe?` as true, we used to set `@html_safe` variable as true on new object created. When doing something like x = 'Hello'.html_safe x[/a/, 1] would throw an error on ruby 2.2, since when nothign gets matched nil is returned by the code and it tries to set `@html_safe` value to true, which would error since starting 2.2 nil is frozen. This change adds a safety net to avoid setting `@html_safe = true` on frozen objects. Fixes #18235
* Add docs for Numeric time-related methodsclaudiob2014-12-171-0/+18
| | | | | | | Add docs for `minutes`, `hours`, `days`, `weeks` and `fortnights`. Fix docs for `in_milliseconds`. [ci skip]
* Replace `#=>` with `# =>` [ci skip]claudiob2014-12-176-21/+21
| | | | | | | | @rafaelfranca suggested in f7c7bcd9 that code examples should display the result after `# =>` and not after `#=>`. This commit replaces *all* the occurrences of `#=>` in the code documentation (mostly added by me :sob:) with the suggested `# =>`.
* Add docs for Numeric#*_bytes methodsclaudiob2014-12-171-0/+20
| | | | | | | Add docs for `kilobytes`, `megabytes`, `gigabytes`, `terabytes`, `petabytes` and `exabytes`. Fix docs for `bytes`. [ci skip]
* Add docs for Time#find_zoneclaudiob2014-12-171-1/+16
| | | | | | Also improves docs for `Time#find_zone!` [ci skip]
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-12-151-1/+5
|\
| * Better doc for AS::DateTime#seconds_since_midnightclaudiob2014-12-041-1/+5
| | | | | | | | | | Adds examples and keeps coherent with the documentation of the similar method `seconds_until_end_of_day`. [ci skip]
* | English fix [ci skip]George Millo2014-12-121-1/+1
|/
* Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-295-8/+8
|
* Prevent Numeric#to_s from allocating an arrayJean Boussier2014-11-282-16/+25
|
* Document `String#html_safe` [ci skip]Sean Griffin2014-11-241-0/+5
| | | | | | It should be part of the documented public API, since we have an entire section of the guides dedicated to it. Documented in a way that addresses the concerns which kept it undocumented in the past.
* Time includes DateAndTime::Zones acts_like(:time)betesh2014-11-091-0/+1
|
* added example of hash#except, and removed extra whitespaces [ci skip]Rishi Jain2014-11-072-5/+11
|
* added example of squish!, remove, test case for multiple occurrence ofRishi Jain2014-11-061-0/+9
| | | | | | | | pattern removal added example for string#remove and test case for remove of multiple occurence of pattern removed extra whitespaces
* fix typo [ci skip]Vijay Dev2014-11-041-1/+1
|
* fixed typo [ci skip]Rishi Jain2014-11-041-1/+1
|
* added example for hash slice method [ci skip]Rishi Jain2014-11-041-2/+8
|
* Merge pull request #17383 from rwz/string-removeRafael Mendonça França2014-11-031-6/+10
|\ | | | | | | | | | | | | Make `String#remove` and `String#remove!` accept multiple arguments Conflicts: activesupport/CHANGELOG.md
| * Make `String#remove` and `String#remove!` accept multiple argumentsPavel Pravosud2014-10-251-6/+10
| |
* | edit pass over all warningsXavier Noria2014-10-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch uniformizes warning messages. I used the most common style already present in the code base: * Capitalize the first word. * End the message with a full stop. * "Rails 5" instead of "Rails 5.0". * Backticks for method names and inline code. Also, converted a few long strings into the new heredoc convention.
* | instance_eval is evilAkira Matsuda2014-10-251-1/+1
| |
* | Avoid creating range objects (take II)Akira Matsuda2014-10-251-1/+5
| |