[prototype runtime] Generate classes with the nested style · Issue #562 · ruby/rbs

Currently rbs prototype runtime command generates classes/modules with :: style. For example, class Foo::Bar end. But I'd like to change it to the nested style, such as class Foo class Bar end end....