This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 952ec79bec313e0001adfc8c86f7970448d32db9
tree 52d2ce3c0f14232e76ce5267bfe1a62435591f87
parent 714d42d1a6140ac4f6fc478bf1766d2b0aedb251
tree 52d2ce3c0f14232e76ce5267bfe1a62435591f87
parent 714d42d1a6140ac4f6fc478bf1766d2b0aedb251
... |
... |
|












This commit has broke form helpers! Now they generate something like name=”list[][name]” instead of name=”list[name]”. All forms in my app are broken.
denis@denis-laptop:~/dev/ruby/rails/actionpack$ rake 1966 tests, 9460 assertions, 16 failures, 0 errors
see http://github.com/methodmissing/rails/commit/fee25cfcb6c8a29ff1906d54ba849349f38ebedd for the fix
Why not use the returning(...) syntax?
returning {} do |allowed| allowed.each { |k| hash[k] = self[k] } end
We get shit for that (performance). Looks much nicer but I guess you don’t need it for really low level stuff like this.
Fair enough, thanks for the clarification.