Some starting issues

S

Scott Mcleod

First off im on the latest/updated version of Mac OSX, on a macbook. I
followed a tutorial..

http://hivelogic.com/articles/2005/12/ruby_rails_lighttpd_mysql_tiger

And then followed the updated one as well and still get issues, i cant
seem to get gem to install correctly? And or install correctly.

I have sort of pin pointed the issue down, i get an error like this each
time i attempt to use gem.

/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:386:in
`alias_method': undefined method `is_file' for class
`Gem::package::TarReader::Entry' (NameError)
from /usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:386:in
`<class:Entry>'
from /usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:322:in
`<class:TarReader>'
from /usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:310:in
`<module:package>'
from /usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:43:in
`<top (required)>'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/custom_require.rb:27:in
`gem_original_require'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/custom_require.rb:27:in
`require'
from /usr/local/lib/ruby/site_ruby/1.9.0/rubygems/builder.rb:7:in
`<top (required)>'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/custom_require.rb:27:in
`gem_original_require'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/custom_require.rb:27:in
`require'
from /usr/local/lib/ruby/site_ruby/1.9.0/rubygems.rb:110:in
`manage_gems'
from gem_prelude.rb:182:in `method_missing'
from /usr/local/bin/gem:10:in `<main>'


I notice it is looking to point to /1.9.0/ but when i browse to that
folder i have 1.8. Is there any way to completely remove these installs?
OR how can I ensure my install goes smooth so I can begin learning...
 
S

Scott Mcleod

I'd like to point out when i fresh download Gem, and attempt to run the
setup, i get this error.

bash-3.2$ bash setup.rb
setup.rb: line 13: syntax error near unexpected token `('
setup.rb: line 13: ` config = defined?(RbConfig) ? RbConfig : Config'
 
J

Joel VanderWerf

Scott said:
I'd like to point out when i fresh download Gem, and attempt to run the
setup, i get this error.

bash-3.2$ bash setup.rb
setup.rb: line 13: syntax error near unexpected token `('
setup.rb: line 13: ` config = defined?(RbConfig) ? RbConfig : Config'

Don't you mean to use ruby?

ruby setup.rb
 
S

Scott Mcleod

Joel said:
Don't you mean to use ruby?

ruby setup.rb


bash-3.2$ ruby setup.rb
/usr/local/lib/ruby/1.9.0/rubygems/requirement.rb:19: warning: already
initialized constant OPS
/usr/local/lib/ruby/1.9.0/rubygems/requirement.rb:29: warning: already
initialized constant OP_RE
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/specification.rb:24:in
`<module:Gem>': Platform is not a module (TypeError)
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/specification.rb:17:in
`<top (required)>'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:15:in `require'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:15:in `<top
(required)>'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/builder.rb:7:in `require'
from
/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/builder.rb:7:in `<top
(required)>'
from /Users/Scott/rubygems-1.3.1/lib/rubygems.rb:868:in
`require'
from /Users/Scott/rubygems-1.3.1/lib/rubygems.rb:868:in `<top
(required)>'
from gem_prelude.rb:93:in `require'
from gem_prelude.rb:93:in `load_full_rubygems_library'
from gem_prelude.rb:175:in `const_missing'
from setup.rb:109:in `<main>'


Still the same error
 
E

Eric Hodel

First off im on the latest/updated version of Mac OSX, on a macbook.

You already have a version of ruby (1.8.6) and RubyGems installed if
you're on OS X 10.5, /usr/bin/ruby

You'll want to update RubyGems for Apple's ruby though.
I have sort of pin pointed the issue down, i get an error like this
each
time i attempt to use gem.

/usr/local/lib/ruby/site_ruby/1.9.0/rubygems/package.rb:386:in
`alias_method': undefined method `is_file' for class
`Gem::package::TarReader::Entry' (NameError)


1.9.1 is the latest version of ruby and comes with the latest
RubyGems. You probably have a prerelease version of 1.9.0 installed
that has a broken RubyGems.

I imagine that `which ruby` will report /usr/local/bin/ruby, and `ruby
-v` will report 1.9.0. If you want to use ruby 1.9 you should remove
your current install of 1.9.0 in /usr/local and configure 1.9.1 with
its own suffix:

./configure --program-suffix=19

So you get /usr/local/bin/ruby19 which won't conflict with the 1.8.6
install you have from Apple.
 
S

Scott Mcleod

Eric said:
You already have a version of ruby (1.8.6) and RubyGems installed if
you're on OS X 10.5, /usr/bin/ruby

You'll want to update RubyGems for Apple's ruby though.



1.9.1 is the latest version of ruby and comes with the latest
RubyGems. You probably have a prerelease version of 1.9.0 installed
that has a broken RubyGems.

I imagine that `which ruby` will report /usr/local/bin/ruby, and `ruby
-v` will report 1.9.0. If you want to use ruby 1.9 you should remove
your current install of 1.9.0 in /usr/local and configure 1.9.1 with
its own suffix:

./configure --program-suffix=19

So you get /usr/local/bin/ruby19 which won't conflict with the 1.8.6
install you have from Apple.


bash-3.2$ which ruby
/usr/local/bin/ruby
bash-3.2$ `ruby -v`
ruby: No such file or directory -- 1.9.0 (LoadError)


How would I go about removing ruby? If i try ruby -command- it gives me
this
ruby: No such file or directory -- help (LoadError)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top