Re: [MacRuby-devel] The future of MacRuby

2012-04-09 Thread dan sinclair
naging the list at > macruby-devel-ow...@lists.macosforge.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of MacRuby-devel digest..." > > > Today's Topics: > > 1.

Re: [MacRuby-devel] The future of MacRuby

2012-04-07 Thread dan sinclair
Can you import before it's open? I just assumed it wasn't accessible at all until enable? It looks like forgeplucker (http://home.gna.org/forgeplucker/) has support to pull tickets out of trac and dump to JSON. Should be pretty easy to go from JSON to GitHub API I'd expect. I can take a look and s

Re: [MacRuby-devel] The future of MacRuby

2012-04-07 Thread dan sinclair
Can we get the issues section enabled on github and move off of Trac? (Not sure how hard it would be to import all of the old trac stuff to Github). Would be nice to consolidate everything in one place. dan On Thu, Apr 5, 2012 at 3:06 PM, Matt Aimonetti wrote: > *Many of you have been wonderi

Re: [MacRuby-devel] I don't normally plug the mailing list, but when I do it's for gemaholics

2011-06-20 Thread dan Sinclair
I started a library of convenience wrappers for macruby it's dj2/Bean on github. Take a look and let me know what you think. Would love to get more helpers in there. Dan On 2011-06-19, at 22:58, Joshua Ballanco wrote: > I was thinking more in the vein of HotCocoa as a library full of Cocoa >

Re: [MacRuby-devel] Is HotCocoa dead?

2011-03-25 Thread dan sinclair
Cool, added. If you have others, feel free to fork and send me a pull request. Thanks, dan On Mar 25, 2011, at 7:38 PM, Henry Maddocks wrote: > > On 25/03/2011, at 2:21 PM, dan sinclair wrote: > >> For me, I've basically dropped HotCocoa. After doing a few apps with it I

Re: [MacRuby-devel] Is HotCocoa dead?

2011-03-25 Thread dan sinclair
I was trying to keep the various forks in line for a while before I stopped working on HotCocoa. If you look at the network graph, there is a fork off of mine which I think contains everything that has been worked on so far. Maybe a good place to start synchronizing from. dan On 2011-03-24,

Re: [MacRuby-devel] Is HotCocoa dead?

2011-03-25 Thread dan sinclair
ecessary only, of course). > I see you added deletion and sync on []=, which is why I didn't point it > being unnecessary :-) > > > -- > Thibault Martin-Lagardette > > On Friday, March 25, 2011 at 02:21, dan sinclair wrote: > >> For me, I've basically drop

Re: [MacRuby-devel] Is HotCocoa dead?

2011-03-24 Thread dan sinclair
For me, I've basically dropped HotCocoa. After doing a few apps with it I quickly came to realize that I liked IB and building apps that way. The thing that I've missed from HotCocoa is all the little Ruby-ish extensions that it added to various classes. As I've built other apps I've been collec

Re: [MacRuby-devel] Documentation

2011-03-05 Thread dan sinclair
What about enabling the wiki on the github repo? dan On Mar 5, 2011, at 10:32, Mark Rada wrote: > +1 for more documentation. More documentation is always a good thing. > > Sent from my iDevice > > On 2011-03-04, at 12:43 PM, Matt Aimonetti wrote: > >> I think that would be awesome! >> >

Re: [MacRuby-devel] Announcing Hubcap

2010-12-15 Thread dan sinclair
I started working on something similar the other day. I've been looking specifically at GitHub issues but I've got a bunch of generic GitHub code that I started writing. You can see the code at https://github.com/dj2/Loom if you're interested. I've been writing it outside of XCode so it's built

Re: [MacRuby-devel] Fibers and Enumerators

2010-08-11 Thread dan sinclair
The em-synchrony project wraps a bunch of EventMachine code in fibers: http://github.com/igrigorik/em-synchrony I know the author was looking at MacRuby and trying to figure out if fibers worked just the other day. dan On 2010-08-11, at 1:19 PM, Matt Massicotte wrote: > Could you share some

Re: [MacRuby-devel] Building Cocoa Apps with MacRuby

2010-06-19 Thread dan sinclair
ect has left me a bit > confused. What do you use the Console task for? > > Thanks, > > Dave. > > On 17 Jun 2010, at 18:32, dan sinclair wrote: > > > Hello, > > > > I wrote up some thoughts on building cocoa applications with MacRuby last > >

Re: [MacRuby-devel] Building Cocoa Apps with MacRuby

2010-06-19 Thread dan sinclair
at the rakefile in your Touchstone project has left me a bit > confused. What do you use the Console task for? > > Thanks, > > Dave. > > On 17 Jun 2010, at 18:32, dan sinclair wrote: > >> Hello, >> >> I wrote up some thoughts on building cocoa a

Re: [MacRuby-devel] Building Cocoa Apps with MacRuby

2010-06-17 Thread dan sinclair
I tried using TextMate with XCode for a while but I didn't like having to switch back and forth between the two all the time. It felt clunky to develop in TextMate and build and see the debug output in XCode. Having to run XCode just to be able to build the application felt heavy. That was part

[MacRuby-devel] Building Cocoa Apps with MacRuby

2010-06-17 Thread dan sinclair
Hello, I wrote up some thoughts on building cocoa applications with MacRuby last night and would love to hear any thoughts other people have. You can see the article at http://everburning.com/news/ramblings-on-programming-cocoa-with-ruby/ . I've been trying several different methods, HotCocoa,

Re: [MacRuby-devel] status and prospects of HotCocoa?

2010-06-10 Thread dan sinclair
got pulled into other things and didn't have much time to keep it going, so > others have forked it I think: > http://github.com/richkilmer/hotcocoa/network > > Dan Sinclair had the most recent work on his branch of it but that was last > updated March 23, 2010: > http://git

Re: [MacRuby-devel] call for help!

2009-11-01 Thread dan sinclair
I created a document on Hotcocoa and Core Data (http://everburning.com/news/hotcocoa-and-core-data/ ) a while ago when I was poking at it. There is a patch in Trac to have the .xcdatamodel files compiled automatically by Rake. Not sure if it ever got looked at. dan On Nov 1, 2009, at 3:36

Re: [MacRuby-devel] Fixing ext/json

2009-08-19 Thread dan sinclair
Ok, it crashes when typed into macirb but not when run as a script with macruby. dan On Aug 19, 2009, at 11:24 PM, dan sinclair wrote: I've simplified the crash to happen outside of the JSON extension. module Test class << self attr_accessor :foo end end Test.foo = &quo

Re: [MacRuby-devel] Fixing ext/json

2009-08-19 Thread dan sinclair
4] dan On Aug 17, 2009, at 10:37 PM, dan sinclair wrote: Hello, I've been taking a poke at ext/json for the last few days attempting to get JSON support working again. I've got it compiling but have run into an issue with memory management and the garbage collector that

[MacRuby-devel] Fixing ext/json

2009-08-17 Thread dan sinclair
Hello, I've been taking a poke at ext/json for the last few days attempting to get JSON support working again. I've got it compiling but have run into an issue with memory management and the garbage collector that I've been unable to get past. I've attached my current diff of changes to g

[MacRuby-devel] URI specs

2009-08-09 Thread dan sinclair
Hello, I started poking at the URI specs to see what I could get working. The attached patch was required to make the specs run (URI provides 11 arguments to initialize). I then started taking a look at why the equality spec fails and have tracked it back to the dup call not returning the

Re: [MacRuby-devel] Base64 specs

2009-08-09 Thread dan sinclair
cript, then it should be added there. Eloy On 7 aug 2009, at 02:13, dan sinclair wrote: As far as I can tell, those methods don't exist in the Base64 class on Ruby 1.9.2. Not sure if I'm missing something but I didn't find them. dan On Aug 6, 2009, at 3:53 AM, Eloy Du

Re: [MacRuby-devel] Base64 specs

2009-08-06 Thread dan sinclair
ese examples on how the method works on 1.9.x. Could you please add those as well? Cheers, Eloy On Aug 5, 2009, at 5:44 AM, dan sinclair wrote: Hello, The attached patch marks some specs that don't execute on Ruby 1.9.2 for me. The other Base64 specs that are broken are due to the

[MacRuby-devel] Base64 specs

2009-08-04 Thread dan sinclair
Hello, The attached patch marks some specs that don't execute on Ruby 1.9.2 for me. The other Base64 specs that are broken are due to the TODO in vm_method.c, rb_mod_modfunc to do with changing scope. dan base64.diff Description: Binary data __

[MacRuby-devel] NSNumber boolean spec

2009-08-03 Thread dan sinclair
The attached patch gets the NSNumber boolean conversion spec working. I'm not sure if the change is correct but I changed the spec from should != to should_not == and it appears to be working correctly now. dan numeric_spec.diff Description: Binary data _

[MacRuby-devel] Add Integer#ord

2009-08-03 Thread dan sinclair
Attached patch ports Integer#ord from Ruby 1.9. dan integer_ord.diff Description: Binary data ___ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

Re: [MacRuby-devel] Porting Rational

2009-07-29 Thread dan sinclair
As requested I grabbed the latest rational.c and complex.c from ruby SVN and got them working under MacRuby. Patch is attached. dan rational_complex_2.diff.gz Description: GNU Zip compressed data On Jul 28, 2009, at 11:54 PM, dan sinclair wrote: Hello, I started to port the

[MacRuby-devel] Porting Rational

2009-07-28 Thread dan sinclair
Hello, I started to port the Rational code to the objc interfaces. There are currently 8 specs left for rational that I haven't been able to get to pass. As part of the rational I also did a bit of the Complex code but there are some specs in there that are segv'ing so I'm not sure how m

Re: [MacRuby-devel] 40g to build MacRuby?

2009-05-30 Thread dan sinclair
A checkout of SVN trunk takes a total of 135meg compiled on my machine. dan On May 30, 2009, at 3:39 AM, Dave Chilson wrote: I've tried to build 0.4 of MacRuby a few times, I have about 40G free on my drive and am running out of space. This is a standard Leopard install, am I doing somethi

Re: [MacRuby-devel] Contributions (Was: Experimental branch status)

2009-05-29 Thread dan sinclair
Is the goal to keep all of the tutorials on the main macruby site? I enjoy writing them but prefer to post them to everburning to keep them with the rest of my stuff. If the goal is to have them on the website I can port the 3 HotCocoa bits I've written over to whatever it is the website u

Re: [MacRuby-devel] HotCocoa status update

2009-05-28 Thread dan sinclair
I've been shooting around in the dark with HotCocoa for a few days. Adding things here and there. Is there a priority list of things to do, or everything is equally good? Is most HotCocoa discussion done on this list and in IRC? Thanks, dan On May 29, 2009, at 1:55 AM, Matt Aimonetti wrot

Re: [MacRuby-devel] Experimental branch status

2009-05-28 Thread dan sinclair
2. Writing tutorials / sample code for MacRuby, since anyone who's new to the project needs a place to start. Speaking of tutorials, I created a couple tutorials on getting started with HotCocoa. They're available at: http://everburning.com/news/heating-up-with-hotcocoa-part-i/ http

[MacRuby-devel] HotCocoa LayoutView Patch

2009-05-22 Thread dan sinclair
Hello, Attached is a simple patch to make the ability to enable a border around a layout_view available without being in debug mode. It also allows different colours to be set on each layout_view. Makes it easier, for me at least, to figure out where all the bounding boxes are sitting.