aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-30 10:03:24 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-30 10:03:24 -0700
commitec55f37027defae03059b46373f56954dd607014 (patch)
tree98f8ea945ddb1c147b66887c179fe48f968e0e65 /railties/CHANGELOG.md
parente0b227102691dfee328c55f688384233faeb3384 (diff)
parent737f618f3876550af505532b36f4386688cec860 (diff)
downloadrails-ec55f37027defae03059b46373f56954dd607014.tar.gz
rails-ec55f37027defae03059b46373f56954dd607014.tar.bz2
rails-ec55f37027defae03059b46373f56954dd607014.zip
Merge pull request #9991 from Passionate/patch-1
improve readability
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md68
1 files changed, 50 insertions, 18 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index a69920252c..c9c1048150 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -69,7 +69,9 @@
*Prem Sichanugrist and Chris Toomey*
-* Improve service pages with new layout (404, etc). *Stanislav Sobolev*
+* Improve service pages with new layout (404, etc).
+
+ *Stanislav Sobolev*
## Rails 4.0.0.beta1 (February 25, 2013) ##
@@ -286,17 +288,25 @@
*Derek Prior & Francesco Rodriguez*
-* Fixed support for DATABASE_URL environment variable for rake db tasks. *Grace Liu*
+* Fixed support for `DATABASE_URL` environment variable for rake db tasks.
+
+ *Grace Liu*
-* rails dbconsole now can use SSL for MySQL. The database.yml options sslca, sslcert, sslcapath, sslcipher,
- and sslkey now affect rails dbconsole. *Jim Kingdon and Lars Petrus*
+* `rails dbconsole` now can use SSL for MySQL. The `database.yml` options sslca, sslcert, sslcapath, sslcipher
+ and sslkey now affect `rails dbconsole`.
+
+ *Jim Kingdon and Lars Petrus*
* Correctly handle SCRIPT_NAME when generating routes to engine in application
that's mounted at a sub-uri. With this behavior, you *should not* use
- default_url_options[:script_name] to set proper application's mount point by
- yourself. *Piotr Sarnacki*
+ `default_url_options[:script_name]` to set proper application's mount point by
+ yourself.
+
+ *Piotr Sarnacki*
-* `config.threadsafe!` is deprecated in favor of `config.eager_load` which provides a more fine grained control on what is eager loaded *José Valim*
+* `config.threadsafe!` is deprecated in favor of `config.eager_load` which provides a more fine grained control on what is eager loaded .
+
+ *José Valim*
* The migration generator will now produce AddXXXToYYY/RemoveXXXFromYYY migrations with references statements, for instance
@@ -319,21 +329,35 @@
*Aleksey Magusev*
-* Set `config.active_record.migration_error` to `:page_load` for development *Richard Schneeman*
+* Set `config.active_record.migration_error` to `:page_load` for development.
+
+ *Richard Schneeman*
+
+* Add runner to `Rails::Railtie` as a hook called just after runner starts.
+
+ *José Valim & kennyj*
-* Add runner to Rails::Railtie as a hook called just after runner starts. *José Valim & kennyj*
+* Add `/rails/info/routes` path, displays same information as `rake routes` .
-* Add `/rails/info/routes` path, displays same information as `rake routes` *Richard Schneeman & Andrew White*
+ *Richard Schneeman & Andrew White*
-* Improved `rake routes` output for redirects *Łukasz Strzałkowski & Andrew White*
+* Improved `rake routes` output for redirects.
-* Load all environments available in `config.paths["config/environments"]`. *Piotr Sarnacki*
+ *Łukasz Strzałkowski & Andrew White*
-* Remove Rack::SSL in favour of ActionDispatch::SSL. *Rafael Mendonça França*
+* Load all environments available in `config.paths["config/environments"]`.
-* Remove Active Resource from Rails framework. *Prem Sichangrist*
+ *Piotr Sarnacki*
-* Allow to set class that will be used to run as a console, other than IRB, with `Rails.application.config.console=`. It's best to add it to `console` block. *Piotr Sarnacki*
+* Remove `Rack::SSL` in favour of `ActionDispatch::SSL`.
+
+ *Rafael Mendonça França*
+
+* Remove Active Resource from Rails framework.
+
+ *Prem Sichangrist*
+
+* Allow to set class that will be used to run as a console, other than IRB, with `Rails.application.config.console=`. It's best to add it to `console` block.
Example:
@@ -345,12 +369,20 @@
config.console = Pry
end
+ *Piotr Sarnacki*
+
* Add convenience `hide!` method to Rails generators to hide current generator
- namespace from showing when running `rails generate`. *Carlos Antonio da Silva*
+ namespace from showing when running `rails generate`.
+
+ *Carlos Antonio da Silva*
-* Rails::Plugin has gone. Instead of adding plugins to vendor/plugins use gems or bundler with path or git dependencies. *Santiago Pastorino*
+* Rails::Plugin has gone. Instead of adding plugins to vendor/plugins use gems or bundler with path or git dependencies.
+
+ *Santiago Pastorino*
* Set config.action_mailer.async = true to turn on asynchronous
- message delivery *Brian Cardarella*
+ message delivery.
+
+ *Brian Cardarella*
Please check [3-2-stable](https://github.com/rails/rails/blob/3-2-stable/railties/CHANGELOG.md) for previous changes.