aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
Commit message (Collapse)AuthorAgeFilesLines
* ActiveSupport Hash optimizations [#2902 state:resolved]Lourens Naude2009-07-153-3/+3
| | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
* Ruby 1.9 style String interpolation support for lower ruby versions. Thanks ↵Lawrence Pit2009-07-072-0/+88
| | | | | | to code from Masao Mutoh's GetText gem. [#2870 state:resolved] Signed-off-by: Yehuda Katz <wycats@yehuda-katzs-macbookpro41.local>
* Friendlier runtime exception if delegatee is nilJeremy Kemper2009-06-181-3/+9
|
* Delegated methods report the expected file/line in backtracesJeremy Kemper2009-06-181-2/+3
|
* Move model naming into ActiveModelJoshua Peek2009-06-172-26/+0
|
* Require missing file in ASYehuda Katz + Carl Lerche2009-06-151-0/+2
|
* moves reopening of core classes to add generic stuff from Action Pack to ↵Xavier Noria2009-06-135-0/+43
| | | | | | | | AS/core_ext and adds tests [#2798 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Bytes calculation speed upLuca Guidi2009-06-131-8/+15
| | | | | | [#2800 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* uses Object#metaclass and Object#class_eval in a few spotsXavier Noria2009-06-121-1/+1
| | | | | | [#2797 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Add #element and #collection to ModelNameJeremy Kemper2009-06-081-3/+5
|
* Don't rely on Rails.loggerJeremy Kemper2009-06-081-2/+4
|
* String #to_time and #to_datetime: handle fractional seconds [#864 ↵Jason Frey (Fryguy)2009-06-071-2/+6
| | | | state:resolved]
* Simplify callbacks to use less metaprogrammingYehuda Katz2009-06-021-2/+4
|
* Remove 'core' fluff. Hookable ActiveSupport.load_all!Jeremy Kemper2009-05-201-2/+1
|
* Break out Symbol#to_proc as a future-ruby extensionJeremy Kemper2009-05-202-14/+15
|
* Break up misc Object extensionsJeremy Kemper2009-05-204-80/+85
|
* Cherry-pick core extensionsJeremy Kemper2009-05-131-0/+3
|
* Check for date/time methods that moved upstream in 1.9Jeremy Kemper2009-05-073-6/+6
|
* Make module dependency DSL opt inJoshua Peek2009-05-072-27/+0
|
* Fixed Hash#from_xml with keys that are all caps.codebrulee2009-05-041-1/+1
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Prefer behavior check to RUBY_VERSION to catch 1.8 backportsJeremy Kemper2009-04-293-5/+5
|
* Refactor ActionView::TemplateYehuda Katz + Carl Lerche2009-04-271-1/+3
| | | | | | | | ActionView::Template is now completely independent from template storage, which allows different back ends such as the database. ActionView::Template's only responsibility is to take in the template source (passed in from ActionView::Path), compile it, and render it.
* Fix dependencies revealed by testing in isolationJeremy Kemper2009-04-2217-15/+43
|
* Fix tests on 1.9Jeremy Kemper2009-04-222-1/+3
|
* Opt in to DependenciesJeremy Kemper2009-04-221-0/+2
|
* No more free lunchJeremy Kemper2009-04-221-1/+3
|
* stdlib autoloads were hanging on 1.9.1Jeremy Kemper2009-04-221-3/+2
|
* Convert string extension modules to class reopensJeremy Kemper2009-04-225-288/+247
|
* ActiveSupport.core_ext bridge util no longer usedJeremy Kemper2009-04-221-10/+0
|
* Switch last module core extension to class reopenJeremy Kemper2009-04-222-21/+6
|
* Merge branch 'master' into cherryJeremy Kemper2009-04-2010-41/+162
|\ | | | | | | | | | | | | | | | | | | | | Conflicts: activesupport/CHANGELOG activesupport/lib/active_support/core_ext/class/delegating_attributes.rb activesupport/lib/active_support/core_ext/hash/conversions.rb activesupport/lib/active_support/core_ext/module/attribute_accessors.rb activesupport/lib/active_support/core_ext/string/multibyte.rb activesupport/lib/active_support/core_ext/time/calculations.rb activesupport/lib/active_support/deprecation.rb
| * Clearer String#first and #last edge cases. Fix that 'foo'.first(0) == 'foo' ↵Jeremy Kemper2009-04-201-2/+14
| | | | | | | | instead of ''
| * Clearer String#first and #last edge cases. Fix that foo.first(0) == instead ↵Jeremy Kemper2009-04-171-3/+15
| | | | | | | | of foo.
| * Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-1312-29/+88
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolved all the conflicts since 2.3.0 -> HEAD. Following is a list of commits that could not be applied cleanly or are obviated with the abstract_controller refactor. They all need to be revisited to ensure that fixes made in 2.3 do not reappear in 3.0: 2259ecf368e6a6715966f69216e3ee86bf1a82a7 AR not available * This will be reimplemented with ActionORM or equivalent 06182ea02e92afad579998aa80144588e8865ac3 implicitly rendering a js response should not use the default layout [#1844 state:resolved] * This will be handled generically 893e9eb99504705419ad6edac14d00e71cef5f12 Improve view rendering performance in development mode and reinstate template recompiling in production [#1909 state:resolved] * We will need to reimplement rails-dev-boost on top of the refactor; the changes here are very implementation specific and cannot be cleanly applied. The following commits are implicated: 199e750d46c04970b5e7684998d09405648ecbd4 3942cb406e1d5db0ac00e03153809cc8dc4cc4db f8ea9f85d4f1e3e6f3b5d895bef6b013aa4b0690 e3b166aab37ddc2fbab030b146eb61713b91bf55 ae9f258e03c9fd5088da12c1c6cd216cc89a01f7 44423126c6f6133a1d9cf1d0832b527e8711d40f 0cb020b4d6d838025859bd60fb8151c8e21b8e84 workaround for picking layouts based on wrong view_paths [#1974 state:resolved] * The specifics of this commit no longer apply. Since it is a two-line commit, we will reimplement this change. 8c5cc66a831aadb159f3daaffa4208064c30af0e make action_controller/layouts pick templates from the current instance's view_paths instead of the class view_paths [#1974 state:resolved] * This does not apply at all. It should be trivial to apply the feature to the reimplemented ActionController::Base. 87e8b162463f13bd50d27398f020769460a770e3 fix HTML fallback for explicit templates [#2052 state:resolved] * There were a number of patches related to this that simply compounded each other. Basically none of them apply cleanly, and the underlying issue needs to be revisited. After discussing the underlying problem with Koz, we will defer these fixes for further discussion.
| | * Hash::XML_TYPE_NAMES: no longer a need for a TimeWithZone entry; this class ↵Geoff Buesing2009-04-051-2/+1
| | | | | | | | | | | | will now match "Time"
| | * Time.local instances: Adding 24.hours across the DST boundary adds 24 hours ↵Michael Curtis2009-03-291-11/+3
| | | | | | | | | | | | instead of one day [#2066 state:resolved]
| * | Add depends_on, use, and setup to abstract up ideas about module inheritance.Yehuda Katz and Carl Lerche2009-04-072-0/+27
| | |
| * | Helpers with an initial testYehuda Katz2009-03-031-3/+3
| | |
| * | First, very early, AbstractController code. More to comeYehuda Katz2009-02-241-0/+79
| | |
| * | Sync 'rails/rails/master'Yehuda Katz2009-01-307-24/+37
| |\ \
| * \ \ Sync 'rails/rails/master'Yehuda Katz2009-01-131-1/+1
| |\ \ \
| * | | | Object#tap for Ruby < 1.8.7Jeremy Kemper2009-01-091-0/+15
| | | | |
| * | | | Sync with rails/rails/master, merge two metaprogramming annotation effortsMichael S. Klishin2008-12-289-112/+113
| |\ \ \ \
| * | | | | Annotated metaprogramming code across ActiveSupportMichael S. Klishin2008-12-286-100/+104
| | | | | |
* | | | | | Autoload StringScanner for pre-1.9 String#each_charJeremy Kemper2009-04-171-1/+1
| | | | | |
* | | | | | Eliminate Pathname extensionsJeremy Kemper2009-04-173-20/+12
| | | | | |
* | | | | | Dice up ActiveSupport::DeprecationJeremy Kemper2009-04-171-0/+9
| | | | | |
* | | | | | autoload PathnameJeremy Kemper2009-04-071-1/+5
| | | | | |
* | | | | | Feature detection for Range#step extensionJeremy Kemper2009-03-291-7/+10
| | | | | |
* | | | | | Convert Range step and include extension modules to class reopenJeremy Kemper2009-03-293-58/+40
| | | | | |