If it's possible to run C or haskell code from ruby, should it be possible to run ruby 1.8.6 code (eg a specific gem) from ruby 1.9?
Andrew On Mon, Dec 7, 2009 at 10:14 AM, sambo99 <[email protected]> wrote: > also, > > if anyone wants to do any testing, save miles of time be installing > the awesome http://rvm.beginrescueend.com/ only caveat is that slows > down the cd command cause it aliases it, but in my copy I have that > commented out > > On Dec 7, 9:37 am, sambo99 <[email protected]> wrote: >> > What are the gems that don't work for you? >> >> Its mainly little annoyances, like the mysql gem was giving me grief, >> it was pulling strings out of the DB in ASCII even though they were >> UTF-8 I linked to a fixed gem in the SO post and even compiled it and >> published it on gemcutter. Except for that I had issues with html5 gem >> but migrated over to sanitize which is better and based off nokogiri. >> also the levenshtein gem no longer compiles the c implementation. >> >> The other big annoyance is all the encoding hacks, I had to put this >> on top of my environment.rb file to get stuff to work >> >> Encoding.default_internal, Encoding.default_external = ['utf-8'] * 2 >> if defined? Encoding >> >> >Any thoughts of particular differences I should look for? >> >> Encoding is the number 1 issue, it bites you when you are doing regex >> matches sometimes as well, on top of that changes to the case ... when >> statement bite you but are trivial to fix also for some reason >> Symbol.humanize no longer works in 1.9 also trivial to fix. >> >> On Dec 7, 8:46 am, Clifford Heath <[email protected]> wrote: >> >> >> >> > -----BEGIN PGP SIGNED MESSAGE----- >> > Hash: SHA1 >> >> > On 07/12/2009, at 8:33 AM, Ryan Bigg wrote: >> >> > > What are the gems that don't work for you? >> >> > I'm a maintainer of Treetop, on which Cucumber depends, >> > and was recently able to verify that it works on 1.9.1, but >> > I haven't delved into find the reasons why so many specs >> > are failing on 1.9.2. >> >> > Any thoughts of particular differences I should look for? >> > It's bit of a needle in a haystack because of the way it's >> > self-bootstrapped (there are no small examples). >> >> > Clifford Heath. >> > -----BEGIN PGP SIGNATURE----- >> > Version: GnuPG v1.4.9 (Darwin) >> >> > iEYEARECAAYFAkscJiYACgkQROuaL1tmAEaxkwCfZL2HwTIBxeHERUEPF+iqld/y >> > 5VIAn3KcjxxEFuZmVBuVXl3jq4hZZAbv >> > =zrp5 >> > -----END PGP SIGNATURE----- > > -- > > You received this message because you are subscribed to the Google Groups > "Ruby or Rails Oceania" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rails-oceania?hl=en. > > > -- You received this message because you are subscribed to the Google Groups "Ruby or Rails Oceania" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rails-oceania?hl=en.
