[MacRuby-devel] xcode question

2012-10-24 Thread david kramf
….I am new to mac , macruby , ruby etc I have built an application using XCODE and when I click RUN on XCODE the application runs and does what I intended here to do. But … I don't find the way to run it OUTSIDE of XCODE , like any other app I have on my mac. When I look at the directory of my

Re: [MacRuby-devel] xcode question

2012-10-24 Thread Jonathan Silverman
Build it in deploy mode Build > Archive Assuming you have provisioning profiles and your proper codesigning certificates installed from developer.apple.com You can submit it to App Store (if you know how to use iTunes Connect), or export as a Mac Installer or Application If you export as Applic

Re: [MacRuby-devel] xcode question

2012-10-24 Thread david kramf
How do I export it as Application ? Thanks, David On Oct 24, 2012, at 7:24 PM, Jonathan Silverman wrote: > Build it in deploy mode > > Build > Archive > > Assuming you have provisioning profiles and your proper codesigning > certificates installed from developer.apple.com > > You can submit i

Re: [MacRuby-devel] Basic delayed email method

2012-10-24 Thread Cliff Rosson
So here is the lazyman's solution I came up with. #!/usr/local/bin/macruby > framework 'ScriptingBridge' > ACCOUNT = "AccountName" > DAY = Time.now.day > MONTH = Time.now.month > YEAR = Time.now.year > time_range = ((Time.now - 150)..(Time.now + 300)) > @mail = SBApplication.applicationWithBundleI

Re: [MacRuby-devel] Quartz 2D Graphics problem

2012-10-24 Thread Robert Carl Rice
Hi, I have my app working again after converting my Quartz2D drawing to ObjC. Not as difficult as I had anticipated and now I've learned some ObjC. So now some of my classes have three files with extensions .h, .m and .rb. It's easy to reference the ObjC property accessor methods from MacRuby.