https://kotlinlang.org logo
Title
p

Paul Woitaschek

06/11/2019, 8:52 AM
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

gildor

06/11/2019, 9:19 AM
I don’t think so, probably use CLI is the best way
but I would use properly configured ProcessBuilder instead of exec()
p

Paul Woitaschek

06/11/2019, 10:12 AM
I want to run kotlin from ruby, not the other way
g

gildor

06/11/2019, 10:12 AM
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