[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

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

Roger Pack

2/21/2009 5:21:00 AM

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/t...
unique_require folder
require it [preferably first].

Feedback welcome.
-=r
--
Posted via http://www.ruby-....