Tagged Questions
7
votes
5answers
5k views
What are the best options for Rich Text Editing in Rails?
I'd like to use Rich Text Editing in place on forms in order to let admins change instructions. What are the best options for doing this?
[To be more clear - the admins are non-technical but may ...
1
vote
4answers
67 views
In Ruby, if a hash is not going to be needed later, is it better to use hash.merge!({…}) instead of hash.merge({…})?
This happens in Ruby on Rails's View, where there is a hash for another partial. This hash has about 20 key/value pairs.
There is (in HAML)
- if (some_conditon)
= render :partial => ...