awk - single quotes as record separator

How do I use single quotes as record separator in awk?

I just couldn't figure that out. I know how to use single quotes as field separator, and double quotes as both field and record separator ...

This will print each single quote separated record on a new line

awk -v RS="'" '{ print }' input-file