gem and stubs

A

Ara.T.Howard

what's the deal? does it support them or not? the docs are confusing on the
matter, but the latest certainly does not support them by default and also no
longer accepts the --install-stubs option.

-a
--
===============================================================================
| ara [dot] t [dot] howard [at] gmail [dot] com
| all happiness comes from the desire for others to be happy. all misery
| comes from the desire for oneself to be happy.
| -- bodhicaryavatara
===============================================================================
 
G

Gavin Sinclair

Ara.T.Howard said:
what's the deal? does it support them or not? the docs are confusing on the
matter, but the latest certainly does not support them by default and also no
longer accepts the --install-stubs option.

Library stubs have been unsupported for ages. In fact, when you
install RubyGems, it looks for any existing library stubs and removes
them :)

When "require" gained the ability to look for libraries in installed
gems, library stubs were no longer needed or wanted.

Application stubs are a different matter. If a gem includes any
executables, they are proxied in your "bin" directory whether you like
it or not. AFAIK, there's no option to control that.

Gavin
 
A

Ara.T.Howard

Library stubs have been unsupported for ages. In fact, when you
install RubyGems, it looks for any existing library stubs and removes
them :)

yup. you are quite right. i missed that. they really should be there as an
option though. otherwise this doesn't work

irb -r postgres # postgres stub is installed

i liked that stubs were totally transparent to user code - they needed do a
'require "rubygems"'

oh well...
When "require" gained the ability to look for libraries in installed gems,
library stubs were no longer needed or wanted.

Application stubs are a different matter. If a gem includes any
executables, they are proxied in your "bin" directory whether you like it or
not. AFAIK, there's no option to control that.

hmmm. thanks for the insight.

cheers.

-a
--
===============================================================================
| ara [dot] t [dot] howard [at] gmail [dot] com
| all happiness comes from the desire for others to be happy. all misery
| comes from the desire for oneself to be happy.
| -- bodhicaryavatara
===============================================================================
 
E

Eric Hodel

Library stubs have been unsupported for ages. In fact, when you
install RubyGems, it looks for any existing library stubs and removes
them :)

When "require" gained the ability to look for libraries in installed
gems, library stubs were no longer needed or wanted.

Application stubs are a different matter. If a gem includes any
executables, they are proxied in your "bin" directory whether you like
it or not. AFAIK, there's no option to control that.

$ gem install --help
Options:
-v, --version VERSION Specify version of gem to install
-l, --local Restrict operations to the
LOCAL domain (default)
-r, --remote Restrict operations to the
REMOTE domain
-b, --both Allow LOCAL and REMOTE operations
-i, --install-dir DIR
-d, --[no-]rdoc Generate RDoc documentation for
the gem on install
-f, --[no-]force Force gem to install, bypassing
dependency checks
-t, --[no-]test Run unit tests prior to
installation
-w, --[no-]wrappers Use bin wrappers for executables
Not available on dosish platforms
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Courtesy the Seattle.rb Rubygems Hackfest
 
G

Gavin Sinclair

Ara.T.Howard said:
yup. you are quite right. i missed that. they really should be there as an
option though. otherwise this doesn't work

irb -r postgres # postgres stub is installed

Yes, that's the benefit, but it's a shallow convenience, at the cost of
spewing crap in the filesystem.

Why not:

alias irb="irb -r rubygems"

?

Or a special alias for a postgres-enabled irb if that's something you
use often.

Gavin
 

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

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,565
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top