RBObject
IntroductionRepresentation of Ruby objects in Objective-C world. GroupsIdentifying Ruby ObjectsGroup members:
Creating and Initializing RBObject objectsGroup members:
Methods
initWithRubyObject:Returns a RBObject object from given ruby VALUE. - initWithRubyObject: (VALUE) rbobj; initWithRubyScriptCString:Returns a RBObject object as result of evaluating the given ruby script. - initWithRubyScriptCString: (const char*) cstr; initWithRubyScriptString:Returns a RBObject object as result of evaluating the given ruby script. - initWithRubyScriptString: (NSString*) str; isRBObjectRuturns a Boolean value that whether the reciever is a ruby object or not. - (BOOL) isRBObject; Return ValueYES if the reciever is a Ruby object, otherwise NO. DiscussionRBObject is a subclass of NSProxy. Note that isKindOfClass: or isMemberOfClass: will not tests the proxy itself. RBObjectWithRubyScriptCString:Returns an object as result of evaluating the given ruby script. + RBObjectWithRubyScriptCString: (const char*) cstr; RBObjectWithRubyScriptString:Returns an object as result of evaluating the given ruby script. + RBObjectWithRubyScriptString: (NSString*) str; |