aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2006-03-21 20:07:41 +0000
committerMarcel Molina <marcel@vernix.org>2006-03-21 20:07:41 +0000
commit330823687bbae1c05af6545912377d317300c1bb (patch)
tree17e75ff504d53ab55fcba14462016ec18172f6f4 /railties/CHANGELOG
parent6fbf40823851c9f99c86c1287af0cfca725776e0 (diff)
downloadrails-330823687bbae1c05af6545912377d317300c1bb.tar.gz
rails-330823687bbae1c05af6545912377d317300c1bb.tar.bz2
rails-330823687bbae1c05af6545912377d317300c1bb.zip
Make all ActionView helpers available in the console for debugging purposes.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4008 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG10
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index ed2562e136..ce65b38f28 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,15 @@
*SVN*
+* Make all ActionView helpers available in the console for debugging purposes. n.b.: Only an 80% solution. Some stuff won't work, most will. [Marcel Molina Jr.]
+
+ ex.
+
+ >> puts options_for_select([%w(a 1), %w(b 2), %w(c 3)])
+ <option value="1">a</option>
+ <option value="2">b</option>
+ <option value="3">c</option>
+ => nil
+
* Replaced old session rake tasks with db:sessions:create to generate a migration, and db:sessions:clear to remove sessions. [Rick Olson]
* Reject Ruby 1.8.3 when loading Rails; extract version checking code. [Chad Fowler]