public
Description: Native OS X (RubyCocoa) app to manage your EC2 instances
Clone URL: git://github.com/bricooke/ec2mgr.git
Search Repo:
ec2mgr / main.m
100644 15 lines (13 sloc) 0.277 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// main.m
// EC2Mgr
//
// Created by Brian Cooke on 7/7/08.
// Copyright (c) 2008 roobasoft, LLC. See LICENSE
//
 
#import <Cocoa/Cocoa.h>
#import <RubyCocoa/RBRuntime.h>
 
int main(int argc, const char *argv[])
{
    return RBApplicationMain("rb_main.rb", argc, argv);
}