Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > [gem] what is the rubygems-update package?

Reply
Thread Tools

[gem] what is the rubygems-update package?

 
 
Lionel Thiry
Guest
Posts: n/a
 
      02-25-2005
Hello!
What is the rubygems-update package? What is its exact purpose?

I suppose it's for updating rubygem itself. I've downloaded it, but I don't
understand, how am I suppose to use it? Is the update already done once it is
installed? Or do I have some commands to run after that?

Thanks in advance for any clue,
Lionel Thiry
 
Reply With Quote
 
 
 
 
Chad Fowler
Guest
Posts: n/a
 
      02-26-2005
On Sat, 26 Feb 2005 08:55:01 +0900, Lionel Thiry
<> wrote:
> Hello!
> What is the rubygems-update package? What is its exact purpose?
>
> I suppose it's for updating rubygem itself. I've downloaded it, but I don't
> understand, how am I suppose to use it? Is the update already done once it is
> installed? Or do I have some commands to run after that?
>


After you install it, you do `update_rubygems` to complete the
upgrade. Hopefully will finally fold this into a firstclass feature
this weekend.


--

Chad Fowler
http://chadfowler.com
http://rubycentral.org
http://rubygarden.org
http://rubygems.rubyforge.org (over 100,000 gems served!)


 
Reply With Quote
 
 
 
 
Lionel Thiry
Guest
Posts: n/a
 
      02-26-2005
Chad Fowler wrote:
> On Sat, 26 Feb 2005 08:55:01 +0900, Lionel Thiry
> <> wrote:
>
>>Hello!
>>What is the rubygems-update package? What is its exact purpose?
>>
>>I suppose it's for updating rubygem itself. I've downloaded it, but I don't
>>understand, how am I suppose to use it? Is the update already done once it is
>>installed? Or do I have some commands to run after that?
>>

>
>
> After you install it, you do `update_rubygems` to complete the
> upgrade. Hopefully will finally fold this into a firstclass feature
> this weekend.
>
>

Thanks a lot!

Lionel Thiry
 
Reply With Quote
 
Arie Kusuma Atmaja
Guest
Posts: n/a
 
      02-27-2005
Hi y'all,
I'm new here so please be kind to me

I'm using WinXP Pro, One-click installer Window ruby182-14.exe and
mysql-4.1.10-win32.zip

The code I wrote is : mysql.rb

require 'mysql'

m = Mysql.new("localhost", "ariebanaranakai", "iwakkaring", "budiman")
r = m.query("SELECT username, password FROM user");
r.each_hash do |f|
print "#{f['username']} . #{f['password']}"
end

The Error I got is :

/mysql.rb:3: uninitialized constant Mysql (NameError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:5:in
'require__'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:5:in
'require'
from mysql.rb:1

What's the matter with this ? I've searched the archieves but found
nothing
I've also asked rubyist mailing list in my country but they averagely
said they never get the problem like I do :'(

Please help me and thanks a lot.

Arie




 
Reply With Quote
 
Bill Guindon
Guest
Posts: n/a
 
      02-27-2005
On Sun, 27 Feb 2005 20:37:18 +0900, Arie Kusuma Atmaja
<> wrote:
> Hi y'all,
> I'm new here so please be kind to me


Welcome to Ruby

> I'm using WinXP Pro, One-click installer Window ruby182-14.exe and
> mysql-4.1.10-win32.zip
>
> The code I wrote is : mysql.rb
>
> require 'mysql'


replace that last line with these:

require 'rubygems'
require_gem 'mysql'

Can get more help here:
http://rubygems.rubyforge.org/wiki/w...k_Introduction

--
Bill Guindon (aka aGorilla)


 
Reply With Quote
 
Navindra Umanee
Guest
Posts: n/a
 
      02-28-2005
Arie Kusuma Atmaja <> wrote:
> The code I wrote is : mysql.rb
>
> require 'mysql'


Give your file another name. require 'mysql' might be including
itself instead of the Mysql class.

> The Error I got is :
>
> ./mysql.rb:3: uninitialized constant Mysql (NameError)
> from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:5:in
> 'require__'
> from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/loadpath_manager.rb:5:in
> 'require'


Argh RubyGems... they do some ugly things with require too. Anyway
try the above suggestion first before worrying about rubygems...

-N.


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57