|
From: Christopher W. <caw...@us...> - 2006-03-29 22:46:24
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30360/src/org/rubypeople/rdt/internal/core Modified Files: RubyProject.java Log Message: add isOnLoadPath method (default to always true for now) Index: RubyProject.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubyProject.java,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** RubyProject.java 25 Mar 2006 02:27:36 -0000 1.20 --- RubyProject.java 29 Mar 2006 22:46:22 -0000 1.21 *************** *** 719,722 **** --- 719,727 ---- return ((RubyProjectElementInfo) getElementInfo()).getNonRubyResources(this); } + + public boolean isOnLoadpath(IRubyScript element) { + // TODO We cheat and assume all scripts are on loadpath. Thsi may not be true. We shoudl check! + return true; + } } |