1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

aligment issues fixed

This commit is contained in:
JudeArasu 2011-07-25 23:26:36 +05:30
parent 203a85f191
commit 6f29b356c1

View file

@ -18,7 +18,8 @@ Also, in 1.8 the ideographic space U+3000 is considered to be whitespace. [Akira
*Rails 3.1.0 (unreleased)* *Rails 3.1.0 (unreleased)*
* ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant. This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. [Andrew White] * ActiveSupport::Dependencies now raises NameError if it finds an existing constant in load_missing_constant.
This better reflects the nature of the error which is usually caused by calling constantize on a nested constant. [Andrew White]
* Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library [Jon Leighton] * Deprecated ActiveSupport::SecureRandom in favour of SecureRandom from the standard library [Jon Leighton]
@ -85,7 +86,8 @@ advantage of the new ClassCache.
* Implemented String#strip_heredoc. [fxn] * Implemented String#strip_heredoc. [fxn]
* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham] * Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and
look for the CustomStore constant. #5486 [Mike Perham]
* Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino] * Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino]
@ -1538,3 +1540,4 @@ approximations and shouldn't be used for critical calculations. [Michael Koziars
* Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied * Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied
* Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours. * Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours.