aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* AS::Callbacks: deprecate rescuable optionBogdan Gusiev2012-02-221-0/+2
|
* Document Integer#ordinal available in PR #2072.Vijay Dev2012-02-041-0/+2
| | | | Also remove an unasserted line in the tests.
* AS::Callbacks: rip out per_key option.Bogdan Gusiev2012-02-041-0/+2
|
* Merge pull request #4866 from bogdan/terminate_after_callbacksJosé Valim2012-02-041-0/+2
|\ | | | | AS::Callbacks#define_callbacks: add :terminate_after_callbacks option
| * AS::Callbacks: :skip_after_callbacks_if_terminated optionBogdan Gusiev2012-02-031-0/+2
| |
* | Added note about new Unicode version.Norman Clarke2012-02-031-0/+2
|/
* Move escape_once logic to ERB::Util, where it belongs toCarlos Antonio da Silva2012-02-011-0/+2
| | | | | | All the logic is based on the HTML_ESCAPE constant available in ERB::Util, so it seems more logic to have the entire method there and just delegate the helper to use it.
* Add release date of Rails 3.2.0 to documentationclaudiob2012-01-261-1/+1
|
* Remove ActiveSupport::TestCase#pending, use `skip` insteadCarlos Antonio da Silva2012-01-211-0/+2
|
* deprecates Module#local_constant_namesXavier Noria2012-01-121-0/+3
|
* removes the compatibility method Module#method_namesXavier Noria2011-12-251-0/+3
|
* removes the compatibility method Module#instance_method_namesXavier Noria2011-12-251-2/+5
|
* Revert "Added Enumerable#pluck to wrap the common pattern of ↵Aaron Patterson2011-12-221-2/+0
| | | | | | | | | | | | collect(&:method) *DHH*" This reverts commit 4d20de8a50d889a09e6f5642984775fe796ca943. Conflicts: activesupport/CHANGELOG.md activesupport/lib/active_support/core_ext/enumerable.rb activesupport/test/core_ext/enumerable_test.rb
* NullStore cache belongs in Active SupportVijay Dev2011-12-201-0/+2
|
* * BufferedLogger is deprecated. Use ActiveSupport::Logger, or the loggerAaron Patterson2011-12-191-0/+5
| | | | from Ruby stdlib.
* * ActiveSupport::BufferedLogger#silence is deprecated. If you want to squelchAaron Patterson2011-12-091-0/+22
| | | | | | | | | | | | | | | | | | | | | | | logs for a certain block, change the log level for that block. * ActiveSupport::BufferedLogger#open_log is deprecated. This method should not have been public in the first place. * ActiveSupport::BufferedLogger's behavior of automatically creating the directory for your log file is deprecated. Please make sure to create the directory for your log file before instantiating. * ActiveSupport::BufferedLogger#auto_flushing is deprecated. Either set the sync level on the underlying file handle like this: f = File.open('foo.log', 'w') f.sync = true ActiveSupport::BufferedLogger.new f Or tune your filesystem. The FS cache is now what controls flushing. * ActiveSupport::BufferedLogger#flush is deprecated. Set sync on your filehandle, or tune your filesystem.
* Added Enumerable#pluck to wrap the common pattern of collect(&:method) *DHH*David Heinemeier Hansson2011-12-021-2/+4
|
* Module#synchronize is deprecated with no replacement. Please use `monitor` ↵Aaron Patterson2011-11-291-0/+3
| | | | from ruby's standard library.
* some tweaks to PR#3547. [Closes #3547]Xavier Noria2011-11-251-0/+3
|
* Deprecated ActiveSupport::MessageEncryptor#encrypt and decrypt.José Valim2011-11-091-0/+2
|
* implements AS::Notifications.subscribed, which provides subscriptions to ↵Xavier Noria2011-11-051-0/+2
| | | | events while a block runs
* Convert CHANGELOGs to Markdown format.Jon Leighton2011-11-041-0/+1571
Reasons: * Markdown reads well as plain text, but can also be formatted. * It will make it easier for people to read on the web as Github formats the Markdown nicely. * It will encourage a level of consistency when people are writing CHANGELOG entries. The script used to perform the conversion is at https://gist.github.com/1339263