I want to call certain Ruby libraries (natural language processing) from Objective C ( it's a Mac OSX app). I would like however to keep the most of the programming in Objective C, using Ruby only to use that particular library that is in Ruby.
I looked at MacRuby and it seems, that I would be expected to use Ruby syntax across all the application, while I would rather use ObjC for the most part and just interface to one-two ruby classes.
I realize that I can just call ruby script from command line, but some kind of integration seems much more useful that that.
So the question is - can I achieve the described above flow with MacRuby or should I look into something else?