public
Description: An Example QuartzComposer Custom Plugin by RubyCocoa on Leopard.
Homepage: http://deadbeaf.org/
Clone URL: git://github.com/mootoh/qcplugin_rb.git
qcplugin_rb / RBLoader.m
100644 20 lines (15 sloc) 0.304 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// RBLoader.m
//
// Created by mootoh on 6/4/08.
// Copyright 2008 deadbeaf.org. All rights reserved.
//
 
#import "RBLoader.h"
#import <RubyCocoa/RubyCocoa.h>
 
@implementation RBLoader
 
+(void) load {
if (RBBundleInit("qc_plugin.rb", self, nil)) {
      NSLog(@"RBLoader#load failed");
}
}
 
@end