How do I use Ruby 1.9 RC?

Hello all,

I downloaded Ruby 1.9 RC binaries (ruby 1.9.0 (2007-07-09 patchlevel
0) [i386-mswin32]) and observed that there are fewer files in bin
directory as compared to Ruby 1.8.6.

Running any ruby program gives me error

0: no such file to load -- ubygems (LoadError)

I tried copying gems directory from my Ruby 1.8.6 directory to Ruby
1.9 but did not work.

Any suggestions?

regards,
Ashutosh

I tried copying gems directory from my Ruby 1.8.6 directory to Ruby
1.9 but did not work.

I guess this should not work.

I didn't did it myself but I would change path environment variable to
point on my 1.9 directory and then install rubygems and all gems to new
environment.

Where did you get 1.9 windows binaries?

by
TheR

···

--
Posted via http://www.ruby-forum.com/\.

This is usually caused by the environment variable RUBYOPT. Remove
this variable from your environment (Right click My Computer ->
Properties -> Advanced -> Environment Variables)

···

On Dec 6, 12:34 am, Ashutosh <ashutosh.ambe...@gmail.com> wrote:

Hello all,

I downloaded Ruby 1.9 RC binaries (ruby 1.9.0 (2007-07-09 patchlevel
0) [i386-mswin32]) and observed that there are fewer files in bin
directory as compared to Ruby 1.8.6.

Running any ruby program gives me error

0: no such file to load -- ubygems (LoadError)

I tried copying gems directory from my Ruby 1.8.6 directory to Ruby
1.9 but did not work.

Any suggestions?

regards,
Ashutosh

Open a console window and do:

SET RUBYOPT=

before calling your new ruby installation

This happens because you have One-Click Installer that was set to add
rubygems by default to your ruby environment each time the VM is
loaded.

I often do manually "require 'rubygems'" at the top of my scripts if
they need certain gems, but often they don't.

You can also remove the environment variable permanently from Control
Panel -> System -> Advanced -> Environment Variables.

Keep in mind that if you remove it, you will need do the require thing
each time you need to use a gem (this is for cases outside mongrel or
rails that are gem-friendly).

HTH,

Luis

···

On Dec 6, 3:34 am, Ashutosh <ashutosh.ambe...@gmail.com> wrote:

Hello all,

I downloaded Ruby 1.9 RC binaries (ruby 1.9.0 (2007-07-09 patchlevel
0) [i386-mswin32]) and observed that there are fewer files in bin
directory as compared to Ruby 1.8.6.

Running any ruby program gives me error

0: no such file to load -- ubygems (LoadError)

I tried copying gems directory from my Ruby 1.8.6 directory to Ruby
1.9 but did not work.

Any suggestions?

> I tried copying gems directory from my Ruby 1.8.6 directory to Ruby
> 1.9 but did not work.

I guess this should not work.

I didn't did it myself but I would change path environment variable to
point on my 1.9 directory and then install rubygems and all gems to new
environment.

I tried that but did not work for me.

Where did you get 1.9 windows binaries?

I downloaded Ruby 1.9 Windows binaries from http://www.ruby-lang.org/en/downloads/\.

by
TheR
--
Posted viahttp://www.ruby-forum.com/.

regards,
Ashutosh

···

On Dec 6, 1:28 pm, Damjan Rems <d_r...@yahoo.com> wrote:

Hello Reacher and Luis,

:O) this worked for me.

Thanks a lot.

regards,
Ashutosh

···

On Dec 6, 9:39 pm, Luis Lavena <luislav...@gmail.com> wrote:

On Dec 6, 3:34 am, Ashutosh <ashutosh.ambe...@gmail.com> wrote:

> Hello all,

> I downloaded Ruby 1.9 RC binaries (ruby 1.9.0 (2007-07-09 patchlevel
> 0) [i386-mswin32]) and observed that there are fewer files in bin
> directory as compared to Ruby 1.8.6.

> Running any ruby program gives me error

> 0: no such file to load -- ubygems (LoadError)

> I tried copying gems directory from my Ruby 1.8.6 directory to Ruby
> 1.9 but did not work.

> Any suggestions?

Open a console window and do:

SET RUBYOPT=

before calling your new ruby installation

This happens because you have One-Click Installer that was set to add
rubygems by default to your ruby environment each time the VM is
loaded.

I often do manually "require 'rubygems'" at the top of my scripts if
they need certain gems, but often they don't.

You can also remove the environment variable permanently from Control
Panel -> System -> Advanced -> Environment Variables.

Keep in mind that if you remove it, you will need do the require thing
each time you need to use a gem (this is for cases outside mongrel or
rails that are gem-friendly).

HTH,

Luis