How to start IRB from an application with a specific prompt

Right now I use:

system ‘irb --prompt my-prompt --readline’

You can start IRB with:

IRB.start

But does anyone know how to start IRB this way with
a specific prompt?

Right now I use system and this feels unclean. :confused: