MacRuby Document-based Application template in XCode?
Hi, When using Objective-C, XCode provides you with a template for a "Cocoa Document-based Application". For MacRuby we so far have in XCode only "MacRuby Application" and "MacRuby Core Data Application". Would it work to take a new MacRuby Application and copy across the relevant bits from a new Cocoa Document-based Application in order to make a MacRuby Document-based Application? Is it that simple, or are there other gotchas I need to know about? Paul Howson Queensland Australia
I believe someone already worked on a template like that, you might want to do a twitter search before giving it a try. - Matt On Tue, Jun 16, 2009 at 11:59 PM, Paul Howson <paul-lists@tdgq.com.au>wrote:
Hi,
When using Objective-C, XCode provides you with a template for a "Cocoa Document-based Application".
For MacRuby we so far have in XCode only "MacRuby Application" and "MacRuby Core Data Application".
Would it work to take a new MacRuby Application and copy across the relevant bits from a new Cocoa Document-based Application in order to make a MacRuby Document-based Application?
Is it that simple, or are there other gotchas I need to know about?
Paul Howson Queensland Australia _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
I think this is the one you mean: http://github.com/atduskgreg/MacRuby-Document-App-Template/tree/master Eloy On 17 jun 2009, at 09:23, Matt Aimonetti wrote:
I believe someone already worked on a template like that, you might want to do a twitter search before giving it a try.
- Matt
On Tue, Jun 16, 2009 at 11:59 PM, Paul Howson <paul- lists@tdgq.com.au> wrote: Hi,
When using Objective-C, XCode provides you with a template for a "Cocoa Document-based Application".
For MacRuby we so far have in XCode only "MacRuby Application" and "MacRuby Core Data Application".
Would it work to take a new MacRuby Application and copy across the relevant bits from a new Cocoa Document-based Application in order to make a MacRuby Document-based Application?
Is it that simple, or are there other gotchas I need to know about?
Paul Howson Queensland Australia _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Thanks Eloy. If anyone can confirm that the template works fine, I think we could bundle it with MacRuby 0.5 (if Laurent and Greg are ok with that). - Matt On Wed, Jun 17, 2009 at 1:33 AM, Eloy Duran <eloy.de.enige@gmail.com> wrote:
I think this is the one you mean: http://github.com/atduskgreg/MacRuby-Document-App-Template/tree/master Eloy
On 17 jun 2009, at 09:23, Matt Aimonetti wrote:
I believe someone already worked on a template like that, you might want to do a twitter search before giving it a try.
- Matt
On Tue, Jun 16, 2009 at 11:59 PM, Paul Howson <paul-lists@tdgq.com.au>wrote:
Hi,
When using Objective-C, XCode provides you with a template for a "Cocoa Document-based Application".
For MacRuby we so far have in XCode only "MacRuby Application" and "MacRuby Core Data Application".
Would it work to take a new MacRuby Application and copy across the relevant bits from a new Cocoa Document-based Application in order to make a MacRuby Document-based Application?
Is it that simple, or are there other gotchas I need to know about?
Paul Howson Queensland Australia _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
The problem is that this is not an Xcode template but a skeleton app (that you're supposed to copy). If someone is willing to contribute a real Xcode template, then I would be happy to bundle it. Laurent On Jun 17, 2009, at 10:11 AM, Matt Aimonetti wrote:
Thanks Eloy. If anyone can confirm that the template works fine, I think we could bundle it with MacRuby 0.5 (if Laurent and Greg are ok with that).
- Matt
On Wed, Jun 17, 2009 at 1:33 AM, Eloy Duran <eloy.de.enige@gmail.com> wrote: I think this is the one you mean: http://github.com/atduskgreg/MacRuby-Document-App-Template/tree/master
Eloy
On 17 jun 2009, at 09:23, Matt Aimonetti wrote:
I believe someone already worked on a template like that, you might want to do a twitter search before giving it a try.
- Matt
On Tue, Jun 16, 2009 at 11:59 PM, Paul Howson <paul- lists@tdgq.com.au> wrote: Hi,
When using Objective-C, XCode provides you with a template for a "Cocoa Document-based Application".
For MacRuby we so far have in XCode only "MacRuby Application" and "MacRuby Core Data Application".
Would it work to take a new MacRuby Application and copy across the relevant bits from a new Cocoa Document-based Application in order to make a MacRuby Document-based Application?
Is it that simple, or are there other gotchas I need to know about?
Paul Howson Queensland Australia _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Hi Paul, I think when I first did it I just copied what an objective C document based application did. The thing that was not so obvious to me at the time was putting the appropriate text in the Info.plist file. I have a few document based application examples translated from Hillegas at johnmacshea.org (it points to an idisk currently while I play with SL server) - go to MacRuby/Hillegass and have a look at the "CH27 Printing" example (press the download arrow to download the zip). Hope that helps, Cheers, John On Jun 17, 2009, at 8:59 , Paul Howson wrote:
Hi,
When using Objective-C, XCode provides you with a template for a "Cocoa Document-based Application".
For MacRuby we so far have in XCode only "MacRuby Application" and "MacRuby Core Data Application".
Would it work to take a new MacRuby Application and copy across the relevant bits from a new Cocoa Document-based Application in order to make a MacRuby Document-based Application?
Is it that simple, or are there other gotchas I need to know about?
Paul Howson Queensland Australia _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
participants (5)
-
Eloy Duran
-
John Shea
-
Laurent Sansonetti
-
Matt Aimonetti
-
Paul Howson