Is it possible to utilize conditional formatting in Prawn? For example, would I be able to check the return value from a form and either output a "Yes" or "No" based on its result? Say it looked like the following in my pdf class.
def method
text "Approved?" + #resultHere
end
Is something like this achievable?
Fixed it. Something like the following should work. I guess I just hit a wall and didn't notice the obvious.