aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
authorJeremy W. Rowe <jeremy.w.rowe@gmail.com>2012-11-23 14:30:15 -0600
committerJeremy W. Rowe <jeremy.w.rowe@gmail.com>2013-01-16 15:12:31 -0600
commitc45980fe6e8200837b70482a177bbca87b654fdf (patch)
tree7094050710368e6a5a20a2d13ac59e92f93851a2 /railties/CHANGELOG.md
parent555cb0afb5a8a8e98fc982edb9e09dfaafd46380 (diff)
downloadrails-c45980fe6e8200837b70482a177bbca87b654fdf.tar.gz
rails-c45980fe6e8200837b70482a177bbca87b654fdf.tar.bz2
rails-c45980fe6e8200837b70482a177bbca87b654fdf.zip
Fixes improper database name when a '.' is included while creating a new rails
application. EG: `rails new something.awesome.com` Conflicts: railties/CHANGELOG.md
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index 4f18f4cdd2..ce6c72c135 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Fixes database.yml when creating a new rails application with '.'
+ Fix #8304
+
+ *Jeremy W. Rowe*
+
* Allow a `:dirs` key in the `SourceAnnotationExtractor.enumerate` options
to explicitly set the directories to be traversed so it's easier to define
custom rake tasks.