aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object
Commit message (Collapse)AuthorAgeFilesLines
* probably should require the objects we monkey patch.Aaron Patterson2012-03-201-0/+1
|
* bigdecimal can be duped on Ruby 2.0Aaron Patterson2012-03-201-0/+12
|
* remove unnecessary require core_ext/string/encodingSergey Nartimov2012-02-141-1/+0
|
* Symbol#[] method presents in Ruby 1.9Sergey Nartimov2012-01-071-1/+1
|
* remove support for ruby 1.8 in AS String extensionsSergey Nartimov2011-12-211-9/+1
|
* Initial pass at removing dead 1.8.x code from Active Support.José Valim2011-12-201-6/+2
| | | | | | There are a bunch of other implicit branches that adds 1.8.x specific code that still needs to be removed. Pull requests for those cases are welcome.
* 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
| |
* | Don't unnecessarily use String eval.Jose and Yehuda2011-10-151-2/+2
|/
* Revert "don't raise NoMethodError the tried method doesn't exists"José Valim2011-10-061-2/+0
| | | | This reverts commit 29a5aeaae976bf8432d57ec996c7c81932a39de6.
* Set the default options value for as_json in the encoder object.José Valim2011-09-301-1/+1
|
* Fixing `as_json` method for ActiveRecord models.Nicolás Hock Isaza2011-09-291-1/+1
| | | | | | | | | | | | | When you've got an AR Model and you override the `as_json` method, you should be able to add default options to the renderer, like this: class User < ActiveRecord::Base def as_json(options = {}) super(options.merge(:except => [:password_digest])) end end This was not possible before this commit. See the added test case.
* Fix Hash#to_query edge case with html_safe string on 1.8 rubybrainopia2011-09-161-1/+1
|
* Revert all the stuff to do with disallowing non-public methods for ↵Jon Leighton2011-08-251-25/+0
| | | | Module#delegate
* Document Object#public_sendJon Leighton2011-08-151-1/+1
|
* Backport Object#public_send to 1.8 so that we can implement Module#delegate ↵Jon Leighton2011-08-151-0/+25
| | | | such that non-public methods raise
* missing require of string/encoding to have access to encoding_aware?Damien Mathieu2011-07-201-0/+1
|
* fix String#blank? on binary strings.Damien Mathieu2011-07-201-1/+6
|
* need magic commentsAkira Matsuda2011-07-141-0/+2
|
* treat fullwidth whitespace as a blank characterAkira Matsuda2011-07-141-1/+5
|
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-251-1/+1
|\ | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer/base.rb activesupport/lib/active_support/core_ext/kernel/requires.rb
| * Remove extra white spaces on ActiveSupport docs.Sebastian Martinez2011-05-231-1/+1
| |
* | don't raise NoMethodError the tried method doesn't existsdmathieu2011-05-211-0/+2
|/
* Prevent duplicable comments from being the opening paragraph for Object docsEvan Farrar2011-05-181-0/+2
|
* replaced eg using old router api with the one in the guides. Add info on ↵Vijay Dev2011-05-071-5/+8
| | | | nesting with_options
* revises comment for blank? methodVijay Dev2011-05-071-3/+3
|
* Revert "Small edit to the if statement simplification for blank? on the ↵Xavier Noria2011-05-061-1/+1
| | | | | | | | | | | | | | Object class. An Object doesn't need to be nil and empty to be blank? just one or the other." Reason: the original code is correct, see !nil && !empty -> !(nil || empty) -> !blank That said, this example has too many negations for my linking. Think should be revised to be more positive and straightforward to read. This reverts commit a4b6e3d9be338e93320606f7cb14759b26ced8df.
* Small edit to the if statement simplification for blank? on the Object ↵Caley Woods2011-05-061-1/+1
| | | | class. An Object doesn't need to be nil and empty to be blank? just one or the other.
* Grammar fixes for Object#in? documentation.Cheah Chu Yeow2011-04-221-2/+2
|
* NilClass is a singletonAkira Matsuda2011-04-201-1/+1
|
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-04-193-20/+104
|\ | | | | | | | | | | Conflicts: railties/guides/source/ajax_on_rails.textile railties/guides/source/generators.textile
| * remove unwanted Example headers as per the guidelines, s/instaces of ↵Xavier Noria2011-04-191-21/+36
| | | | | | | | NilClass/nil/ and friends, completes some rdocs
| * commit copy-edit: simplifies blank? rdoc and revises formattingXavier Noria2011-04-191-24/+23
| |
| * Revert "Formated docs"Xavier Noria2011-04-191-9/+9
| | | | | | | | | | | | | | Reason: "To be blank" and "to be empty" belongs to our everyday terminology, they go in regular font. This reverts commit 280a8709923d2bf707ec4d82ac1e5cb14941da3d.
| * Formated docsSebastian Martinez2011-04-181-9/+9
| |
| * oops fixed typoSebastian Martinez2011-04-181-1/+1
| |
| * Fixed docs for NilClass#trySebastian Martinez2011-04-181-8/+8
| |
| * Formatting docsSebastian Martinez2011-04-172-11/+11
| |
| * Docs for +duplicable?+Sebastian Martinez2011-04-171-4/+28
| |
| * Docs for NilClass#trySebastian Martinez2011-04-171-1/+13
| |
| * Formatting examplesSebastian Martinez2011-04-171-6/+12
| |
| * Documented String#blank?Sebastian Martinez2011-04-171-1/+7
| |
| * Documented Hash#blank?Sebastian Martinez2011-04-171-1/+6
| |
| * Documented Array#blank?Sebastian Martinez2011-04-171-1/+6
| |
| * Documented TrueClass#blank?Sebastian Martinez2011-04-171-1/+5
| |
| * Documented FalseClass#blank?Sebastian Martinez2011-04-171-1/+5
| |
| * Documented NilClass#blank?Sebastian Martinez2011-04-171-1/+5
| |
* | Only rescue a thrown NoMethodError, don't preemptively check for #include?; ↵Jared McFarland2011-04-151-1/+4
| | | | | | | | added tests
* | added an exception to Object#in? to match the methods documentationJared McFarland2011-04-151-0/+1
| |
* | Remove `#among?` from Active SupportPrem Sichanugrist2011-04-131-9/+0
|/ | | | | | After a long list of discussion about the performance problem from using varargs and the reason that we can't find a great pair for it, it would be best to remove support for it for now. It will come back if we can find a good pair for it. For now, Bon Voyage, `#among?`.