[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

gem install problem

dave rose

7/25/2006 6:41:00 PM

C:\RUBY182\BIN>gem environment

C:\RUBY182\BIN>"c:\ruby182\bin\ruby.exe" "c:\ruby182\bin\gem"
environment

Rubygems Environment:
- VERSION: 0.8.10 (0.8.10)
- INSTALLATION DIRECTORY: c:/ruby182/lib/ruby/gems/1.8
- GEM PATH:
- c:/ruby182/lib/ruby/gems/1.8
- REMOTE SOURCES:
- http://gems.rub...

C:\RUBY182\BIN>dir c:\ruby182\lib\ruby\gems\1.8\rup*.*
Volume in drive C is IBM_PRELOAD
Volume Serial Number is 3F3F-14F0

Directory of c:\ruby182\lib\ruby\gems\1.8

07/11/2006 02:10p 154,112 ruport-0.4.13.gem
1 File(s) 154,112 bytes
0 Dir(s) 8,766,226,432 bytes free

C:\RUBY182\BIN>gem install ruport -l

C:\RUBY182\BIN>"c:\ruby182\bin\ruby.exe" "c:\ruby182\bin\gem" install
ruport -l

Attempting local installation of 'ruport'
ERROR: Local gem file not found: ruport*.gem
ERROR: Could not install a local or remote copy of the gem: ruport

C:\RUBY182\BIN>
what i'm i missing or why isn't installing really ...any help?

--
Posted via http://www.ruby-....

3 Answers

Lyle Johnson

7/25/2006 7:06:00 PM

0

On 7/25/06, Dave Rose <bitdoger2@yahoo.com> wrote:

> what i'm i missing or why isn't installing really ...any help?

I don't understand the question, but it appears that the ruport gem is
already installed (since it's present in your C:\ruby182\lib\ruby\gems
directory). You can confirm this by typing:

gem list ruport

Hope this helps,

Lyle

Justin Collins

7/25/2006 7:07:00 PM

0

Dave Rose wrote:
> C:\RUBY182\BIN>gem environment
>
> C:\RUBY182\BIN>"c:\ruby182\bin\ruby.exe" "c:\ruby182\bin\gem"
> environment
>
> Rubygems Environment:
> - VERSION: 0.8.10 (0.8.10)
> - INSTALLATION DIRECTORY: c:/ruby182/lib/ruby/gems/1.8
> - GEM PATH:
> - c:/ruby182/lib/ruby/gems/1.8
> - REMOTE SOURCES:
> - http://gems.rub...
>
> C:\RUBY182\BIN>dir c:\ruby182\lib\ruby\gems\1.8\rup*.*
> Volume in drive C is IBM_PRELOAD
> Volume Serial Number is 3F3F-14F0
>
> Directory of c:\ruby182\lib\ruby\gems\1.8
>
> 07/11/2006 02:10p 154,112 ruport-0.4.13.gem
> 1 File(s) 154,112 bytes
> 0 Dir(s) 8,766,226,432 bytes free
>
> C:\RUBY182\BIN>gem install ruport -l
>
> C:\RUBY182\BIN>"c:\ruby182\bin\ruby.exe" "c:\ruby182\bin\gem" install
> ruport -l
>
> Attempting local installation of 'ruport'
> ERROR: Local gem file not found: ruport*.gem
> ERROR: Could not install a local or remote copy of the gem: ruport
>
> C:\RUBY182\BIN>
> what i'm i missing or why isn't installing really ...any help?
>
>
Try running gem install from within the directory where the .gem file is
located.

-Justin

dave rose

7/25/2006 8:21:00 PM

0

Justin Collins wrote:
> Dave Rose wrote:
>> - REMOTE SOURCES:
>> 0 Dir(s) 8,766,226,432 bytes free
>> C:\RUBY182\BIN>
>> what i'm i missing or why isn't installing really ...any help?
>>
>>
> Try running gem install from within the directory where the .gem file is
> located.
>
> -Justin
..oka i work like a charm
C:\RUBY182\LIB\RUBY\GEMS\1.8>"c:\ruby182\bin\ruby.exe"
"c:\ruby182\bin\gem" list


*** LOCAL GEMS ***

facets (1.4.5)
Exceptional collection of extensions and additions.

fxri (0.3.2)
Graphical interface to the RI documentation, with search engine.

fxruby (1.2.6)
FXRuby is the Ruby binding to the FOX GUI toolkit.

ruby-breakpoint (0.5.1)
ruby-breakpoint lets you inspect and modify state at run time.

ruport (0.4.13)
A generalized Ruby report generation and templating engine.

sources (0.0.1)
This package provides download sources for remote gem installation

...thanx

--
Posted via http://www.ruby-....