I am building a very small gem and need to include some ERB in the
README.rdoc for this gem.
example:
Here is a couple of instructions, blah, blah…
<%= f.label :author %>
<%= f.text_field :author %>
<%= f.text_field :author %>
<%= f.label :title %>
<%= f.text_field :title %>
<%= f.text_field :title %>
rdoc will not generate anything unless I remove the ERB or bastardize
it like removing a percent sign or something. I’ve seen ERB in
several open source project README files, so, I don’t get it.
Anyone else run into this problem. Do I need to do something special
to add ERB into a non-source code file?