public
Description: Ruby module exclusion functionality
Clone URL: git://github.com/yrashk/rbmodexcl.git
Minor load procedure fix
yrashk (author)
Tue May 20 03:42:19 -0700 2008
commit  8051da8596a26a6eb7e52fdacc31356c10eb0946
tree    efc68c75c4b379dd07dadd1bc2ea3a94c4b0a231
parent  28209d5f7a4622bca3b9868ab839c01228e75208
...
1
2
 
3
4
 
5
6
...
1
 
2
3
 
4
5
6
0
@@ -1,5 +1,5 @@
0
 if defined?(RUBY_ENGINE) && RUBY_ENGINE == "rbx"
0
- require 'rbxmodexcl'
0
+ require File.join(File.dirname(__FILE__),'rbxmodexcl')
0
 else
0
- require 'mrimodexcl'
0
+ require File.join(File.dirname(__FILE__),'mrimodexcl')
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.