2014-03-28 11:28:28 -04:00
|
|
|
* Do not set the Rails environment to test by default when using test_unit Railtie.
|
|
|
|
|
|
|
|
*Konstantin Shabanov*
|
|
|
|
|
2014-03-21 19:26:02 -04:00
|
|
|
* Remove sqlite3 lines from `.gitignore` if the application is not using sqlite3.
|
|
|
|
|
|
|
|
*Dmitrii Golub*
|
|
|
|
|
2014-03-16 16:08:16 -04:00
|
|
|
* Add public API to register new extensions for `rake notes`.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
config.annotations.register_extensions("scss", "sass") { |tag| /\/\/\s*(#{tag}):?\s*(.*)$/ }
|
|
|
|
|
|
|
|
*Roberto Miranda*
|
|
|
|
|
2013-07-26 11:20:06 -04:00
|
|
|
* Removed unnecessary `rails application` command.
|
|
|
|
|
|
|
|
*Arun Agrawal*
|
|
|
|
|
2014-03-08 09:51:49 -05:00
|
|
|
* Make the `rails:template` rake task load the application's initializers.
|
|
|
|
|
|
|
|
Fixes #12133.
|
|
|
|
|
|
|
|
*Robin Dupret*
|
|
|
|
|
2014-02-18 16:13:23 -05:00
|
|
|
* Introduce `Rails.gem_version` as a convenience method to return
|
|
|
|
`Gem::Version.new(Rails.version)`, suggesting a more reliable way to perform
|
|
|
|
version comparison.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
Rails.version #=> "4.1.2"
|
|
|
|
Rails.gem_version #=> #<Gem::Version "4.1.2">
|
|
|
|
|
|
|
|
Rails.version > "4.1.10" #=> false
|
|
|
|
Rails.gem_version > Gem::Version.new("4.1.10") #=> true
|
|
|
|
Gem::Requirement.new("~> 4.1.2") =~ Rails.gem_version #=> true
|
|
|
|
|
|
|
|
*Prem Sichanugrist*
|
|
|
|
|
2014-02-25 08:57:23 -05:00
|
|
|
* Avoid namespacing routes inside engines.
|
|
|
|
|
|
|
|
Mountable engines are namespaced by default so the generated routes
|
|
|
|
were too while they should not.
|
|
|
|
|
|
|
|
Fixes #14079.
|
|
|
|
|
|
|
|
*Yves Senn*, *Carlos Antonio da Silva*, *Robin Dupret*
|
|
|
|
|
2014-02-25 07:14:35 -05:00
|
|
|
Please check [4-1-stable](https://github.com/rails/rails/blob/4-1-stable/railties/CHANGELOG.md) for previous changes.
|