[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Ruby Gem Issue

Zayd Abdullah

5/31/2009 8:41:00 PM

I get this error below when running :make in my macvim editor

:!rake 2>&1| tee
/var/folders/vb/vb1WTMY3ERGWQBNjCq03fk+++TI/-Tmp-/v802427/3
Rails requires RubyGems >= 1.3.1 (you have 1.0.1). Please `gem update
--system` and try again.
(in /Users/musdev/peepcode/my_blog)
(1 of 1): (in /Users/musdev/peepcode/my_blog)


But when I type gem --version in my terminal it says I have the latest
1.3.4
Is something possibly wrong with my set up somewhere?

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

5 Answers

Eric Hodel

6/1/2009 5:46:00 PM

0

On May 31, 2009, at 16:41, Zayd Connor wrote:
> I get this error below when running :make in my macvim editor
>
> :!rake 2>&1| tee
> /var/folders/vb/vb1WTMY3ERGWQBNjCq03fk+++TI/-Tmp-/v802427/3
> Rails requires RubyGems >= 1.3.1 (you have 1.0.1). Please `gem update
> --system` and try again.
> (in /Users/musdev/peepcode/my_blog)
> (1 of 1): (in /Users/musdev/peepcode/my_blog)
>
>
> But when I type gem --version in my terminal it says I have the latest
> 1.3.4
> Is something possibly wrong with my set up somewhere?

Likely the path for vim is not the same as the path for your shell.

:!gem env and :!echo $PATH vs gem env and echo $PATH will help you
figure it out.

Zayd Abdullah

6/1/2009 6:49:00 PM

0

Eric Hodel wrote:
> On May 31, 2009, at 16:41, Zayd Connor wrote:
>> But when I type gem --version in my terminal it says I have the latest
>> 1.3.4
>> Is something possibly wrong with my set up somewhere?
>
> Likely the path for vim is not the same as the path for your shell.
>
> :!gem env and :!echo $PATH vs gem env and echo $PATH will help you
> figure it out.

Thanks for the response!!
I typed in :!echo $PATH vs gem env and echo $PATH

/usr/bin:/bin:/usr/sbin:/sbin vs gem env and echo
/usr/bin:/bin:/usr/sbin:/sbin

So do I need to add gem to usr/bin?

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

Eric Hodel

6/2/2009 11:04:00 PM

0

On Jun 1, 2009, at 11:48, Zayd Connor wrote:

> Eric Hodel wrote:
>> On May 31, 2009, at 16:41, Zayd Connor wrote:
>>> But when I type gem --version in my terminal it says I have the
>>> latest
>>> 1.3.4
>>> Is something possibly wrong with my set up somewhere?
>>
>> Likely the path for vim is not the same as the path for your shell.
>>
>> :!gem env and :!echo $PATH vs gem env and echo $PATH will help you
>> figure it out.
>
> Thanks for the response!!
> I typed in :!echo $PATH vs gem env and echo $PATH
>
> /usr/bin:/bin:/usr/sbin:/sbin vs gem env and echo
> /usr/bin:/bin:/usr/sbin:/sbin
>
> So do I need to add gem to usr/bin?

"vs" is not part of the command.

run `echo $PATH` via vim and shell

run `gem env` via vim and shell

include output from all four commands in your email.

Zayd Abdullah

6/7/2009 5:25:00 AM

0

Eric Hodel wrote:
> On Jun 1, 2009, at 11:48, Zayd Connor wrote:
>
>>> figure it out.
>>
>> Thanks for the response!!
>> I typed in :!echo $PATH vs gem env and echo $PATH
>>
>> /usr/bin:/bin:/usr/sbin:/sbin vs gem env and echo
>> /usr/bin:/bin:/usr/sbin:/sbin
>>
>> So do I need to add gem to usr/bin?
>
> "vs" is not part of the command.
>
> run `echo $PATH` via vim and shell
>
> run `gem env` via vim and shell
>
> include output from all four commands in your email.
Hey Eric,

Sorry for the delay, had the flu, wasnt active at all this last week.

OUTPUT: echo $PATH via vim => /usr/bin:/usr/sbin:/sbin

OUTPUT: echo $PATH via shell =>
/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/lib:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin

OUTPUT: gem env via vim => message displays reading "Not an editor
command:gemenv

OUTPUT: gem env via shell => RubyGems Environment:
- RUBYGEMS VERSION: 1.3.4
- RUBY VERSION: 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.6.0]
- INSTALLATION DIRECTORY: /usr/local/lib/ruby/gems/1.8
- RUBY EXECUTABLE: /usr/local/bin/ruby
- EXECUTABLE DIRECTORY: /usr/local/bin
- RUBYGEMS PLATFORMS:
- ruby
- x86-darwin-9
- GEM PATHS:
- /usr/local/lib/ruby/gems/1.8
- /Users/musdev/.gem/ruby/1.8
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :benchmark => false
- :backtrace => false
- :bulk_threshold => 1000
- REMOTE SOURCES:
- http://gems.ruby...


Kindest Regards

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

Eric Hodel

6/9/2009 6:57:00 PM

0

On Jun 6, 2009, at 22:25, Zayd Connor wrote:

> Eric Hodel wrote:
>> On Jun 1, 2009, at 11:48, Zayd Connor wrote:
>>
>>>> figure it out.
>>>
>>> Thanks for the response!!
>>> I typed in :!echo $PATH vs gem env and echo $PATH
>>>
>>> /usr/bin:/bin:/usr/sbin:/sbin vs gem env and echo
>>> /usr/bin:/bin:/usr/sbin:/sbin
>>>
>>> So do I need to add gem to usr/bin?
>>
>> "vs" is not part of the command.
>>
>> run `echo $PATH` via vim and shell
>>
>> run `gem env` via vim and shell
>>
>> include output from all four commands in your email.
> Hey Eric,
>
> Sorry for the delay, had the flu, wasnt active at all this last week.
>
> OUTPUT: echo $PATH via vim => /usr/bin:/usr/sbin:/sbin
>
> OUTPUT: echo $PATH via shell =>
> /usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/lib:/opt/
> local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/
> bin:/usr/X11/bin
>
> OUTPUT: gem env via vim => message displays reading "Not an editor
> command:gemenv

You're going to have to learn how to run shell commands from your
editor first. Look at the help on !. You probably have your shell
environment set up incorrectly. I can't help you with that.

> OUTPUT: gem env via shell => RubyGems Environment:
> - RUBYGEMS VERSION: 1.3.4
> - RUBY VERSION: 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.6.0]
> - INSTALLATION DIRECTORY: /usr/local/lib/ruby/gems/1.8
> - RUBY EXECUTABLE: /usr/local/bin/ruby
> - EXECUTABLE DIRECTORY: /usr/local/bin
> - RUBYGEMS PLATFORMS:
> - ruby
> - x86-darwin-9
> - GEM PATHS:
> - /usr/local/lib/ruby/gems/1.8
> - /Users/musdev/.gem/ruby/1.8
> - GEM CONFIGURATION:
> - :update_sources => true
> - :verbose => true
> - :benchmark => false
> - :backtrace => false
> - :bulk_threshold => 1000
> - REMOTE SOURCES:
> - http://gems.ruby...
>
>
> Kindest Regards
>
> --
> Posted via http://www.ruby-....
>