[ANN] unique_require 0.0.0a allow 1.8.x to never re-require

R

Roger Pack

This has probably been done "1,000,000" times, but here's another hack
at it.

The background:
If you've ever gotten a message like
../smart_require/test.rb:1: warning: already initialized constant A


you know that ruby 1.8.x "re-requires" a file if you pass in a different
paths to the same file.
ex:
require 'test.rb'
require '../current_dir/test.rb'

results in test.rb being loaded twice, despite the semantics of require
being that it loads only once.

Ruby 1.9 overcomes this.
This file overcomes this for 1.8.x
ex:

c:\dev>ruby example_bad.rb
../dev/test.rb:1: warning: already initialized constant A

C:\dev\>ruby -runique_require example_bad.rb
# no warning is displayed

To use:
download the unique_require.rb file from
http://github.com/rogerdpack/roger-useful/tree/master
unique_require folder
require it [preferably first].

Feedback welcome.
-=r
 

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
474,177
Messages
2,570,953
Members
47,507
Latest member
codeguru31

Latest Threads

Top