Re: [MacRuby-devel] MacRuby-devel Digest, Vol 66, Issue 1

2013-11-03 Thread Tim Rand
There was some mention in the most resent rubymotion release notes that rubymotion was now capable of writing Mavericks os X Apps (including eval() ). So there is a solution. I am not sure Laurent will be willing to share the solution back to macruby though. Tim On Sat, Nov 2, 2013 at 7:44 PM, wr

Re: [MacRuby-devel] Update (Laurent Sansonetti)

2012-04-11 Thread Tim Rand
"First, we will release master as 0.12 (and just forget about 0.11). It is important since master has changes for the latest Xcode that have never been snipped yet." Does that mean the macruby project template will be updated to work with xcode 4.3.2--i.e. install into the updated directory locati

[MacRuby-devel] Re The Future of MacRuby

2012-04-05 Thread Tim Rand
I am surprised to hear Laurent has left Apple. I don't know what motivated the change, but I am sure that he is working on something great. Good luck Laurent!!! While I have a lot of faith in the open source community and think growing a larger pool of contributors is critical for the long-term vi

[MacRuby-devel] obj.method(m) often gives a TypeError

2011-01-05 Thread Tim Rand
I noticed that obj.method(m) is often giving an error. The error given on [].methods looks like: Tim:~/Desktop> macirb >> def err(obj) >> obj.methods(1,1).each do |m| ?> begin ?> obj.method(m) >> rescue => e >> p e >> end >> end >> end => nil >> err([]) # # # # # # # #

[MacRuby-devel] mac & ruby question

2009-12-07 Thread Tim Rand
d sticking with default compilation settings. > For example, the following is all you need: > > gem install hpricot > > Thus, I would recommend going through the process again of reinstalling. > > Good luck, > > -Conrad > > Sent from my iPhone > > On Dec 6, 2

[MacRuby-devel] mac & ruby question

2009-12-06 Thread Tim Rand
I am sorry. This is not a macruby question per se, just a question about plain old ruby on mac (specifically snow leopard) question. But you guys for sure will know the answer, so I must ask. Why is it that after upgrading to snow leopard (10.6.2) a long list of gems no longer run on ruby 1.9.1? U

[MacRuby-devel] has anyone else noticed hotcocoa/graphics is no longer working..

2009-12-02 Thread Tim Rand
I am running 0.5 beta2 not the latest development trunk. I'll try updating. I believe I fixed this bug after 0.5 beta2, what version are you on? > > - Matt > > On Wed, Dec 2, 2009 at 3:51 PM, Tim Rand wrote: > > > Though the following code works on macruby 0.

[MacRuby-devel] has anyone else noticed hotcocoa/graphics is no longer working...

2009-12-02 Thread Tim Rand
Though the following code works on macruby 0.4 and mac OS 10.5.8, it no longer works for me since updating macruby and the OS: macruby -e 'require "hotcocoa/graphics"' -e:1:in `': private method `define_method' called for Class:Class (NoMethodError) I am running: OS 10.6.2 MacRuby version 0.5 (ru

[MacRuby-devel] question about goals for ruby module compatibility with macruby

2009-07-30 Thread Tim Rand
Hi Laurent and macruby-ists,I am thinking about taking on a rather ambitious project with macruby in the next year or so which would benefit from having access to existing ruby gems (like the bioruby gem and rails). Can anyone predict how general the ruby gem compatibility will be as macruby mature

[MacRuby-devel] Tim added you as a friend on MyLife!

2009-05-29 Thread Tim Rand
Tim Rand added you as a friend on MyLife(TM). Please confirm you know Tim so we can connect you. Do You Know Tim? YES - Connect with Tim, and see who's searching for you http://smtp26.mail.reunion.com:80/track

[MacRuby-devel] macruby and sqlite3 gem

2009-03-31 Thread Tim Rand
Hi Jordon, Thanks for the idea. I tried it (arch -arch i386 macirb), but get the same error. Tim Jordon suggested: "does not contain a version for the current architecture" sounds like a 32-bit vs. 64-bit problem to me. MacRuby 0.4 has both i386 and x86_64 archs for macruby and macirb, on a capa

[MacRuby-devel] macruby and sqlite3 gem

2009-03-31 Thread Tim Rand
y > but I didn't have time yet (and I didn't really need it either).  DataObject > is the uniform API used by DataMapper to talk to its drivers. > If someone is interested in working on that, I can put him/her in contact > with the DM team. > > - Matt > > > >

[MacRuby-devel] Can any kind macruby experts help me get sqlite3 gem working with macruby--please?

2009-03-31 Thread Tim Rand
Can any kind macruby experts help me get sqlite3 gem working with macruby? sqlite3-ruby-1.2.4 ruby gem works in ruby 1.9.0. So I think it should work in macruby also... >From macirb I added the path to the gem: $: << "path/to/the/sqlite3-ruby-1.2.4/lib" require 'sqlite3.rb' # => true $db = SQL

[MacRuby-devel] Project status, goals, and other

2009-02-27 Thread Tim Rand
> The macruby website has a timeline for project goals. Here is the link http://www.macruby.org/trac/wiki/MacRubyRoadmap I am very excited that the IO rewrite is on the chopping block for 0.5. Tim ___ MacRuby-devel mailing list MacRuby-devel@lists.macosf

[MacRuby-devel] µgem (notice I am using your G reek character!) question

2009-02-13 Thread Tim Rand
Hi Matt, First of all, thank you so much for working on the gem issue with macruby. There is no more important work in the world, er universe, right now than this--I mean it, from the bottom of my frustrated-at-not-being-able-to-use-sqlite3-heart. I am hoping you could comment on why sqlite3-ruby s

[MacRuby-devel] hotcocoa - can't find executable...how to find it

2009-01-30 Thread Tim Rand
>> $:.each{|path| puts path + "/" + "hotcocoa.rb" if File.exists?(path + "/" + "hotcocoa.rb")} /Library/Frameworks/MacRuby.framework/Versions/0.4/usr/lib/ruby/1.9.0/hotcocoa.rb $: is a ruby environmental variable for an array of all the paths that ruby looks at to require a file. Another useful on

[MacRuby-devel] Am I the only one having problems with macgem in macruby 0.4?

2008-12-26 Thread Tim Rand
I know problems with macgem have been posted (several times) before, but I can't tell from the threads whether or not gems are working in macruby version 0.4. It doesn't seem to work for me. Though 'sudo macgem query --remote' works as expecteed. Even if I run macruby version 0.3, gem installation

Re: [MacRuby-devel] I tried converting a working script rubycocoa script to macruby and it failed on this line...

2008-12-12 Thread Tim Rand
reach the person managing 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. I tried converti

[MacRuby-devel] I tried converting a working script rubycocoa script to macruby and it failed on this line...

2008-12-11 Thread Tim Rand
NSDistributedNotificationCenter.defaultCenter.addObserver_selector_name_object(self, :next_number, "next number", "com.imasender") #Working RubyCocoa line NSDistributedNotificationCenter.defaultCenter.addObserver self, selector: :next_number, name: "next number", object: "com.imasender" #But g

[MacRuby-devel] macruby or macirb bug

2008-11-28 Thread Tim Rand
In macirb the following code crashes >> array = NSMutableArray.arrayWithObjects([1,2]) => [[1, 2], 1511869] >> array => [[1, 2], 1511869] >> array.length => 2 >> array2 = NSMutableArray.arrayWithObjects([1, 2, "this"]) Killed Using the more ruby friendly way of assigning a variable to an array wo