Is there a better way to interop between ruby and ...
# announcements
p
Is there a better way to interop between ruby and kotlin than calling
exec
on a script? I have some CI scripts where I use fastlane but whenver I need to write stuff in ruby it kind of breaks my head
g
I don’t think so, probably use CLI is the best way
but I would use properly configured ProcessBuilder instead of exec()
p
I want to run kotlin from ruby, not the other way
g
ahhh
I see
than yeah, don’t think that there is a better way, except write some socket api
there is JRuby of course
but not sure that you can run fastlane with it