Skip to content

Commit

Permalink
Moving JavaSupport files into site_ruby/1.8/builtin, so they can be t…
Browse files Browse the repository at this point in the history
…weaked by intrepid users and indexed by tools like NetBeans.

git-svn-id: http://svn.codehaus.org/jruby/branches/jruby-1_0@4800 961051c9-f516-0410-bf72-c9f7e237a7b7
  • Loading branch information
headius committed Oct 30, 2007
1 parent 75a46fc commit f2ce942
Show file tree
Hide file tree
Showing 19 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions build.xml
Expand Up @@ -97,6 +97,11 @@
<include name="**/*.rb"/>
</fileset>
</copy>
<copy todir="${jruby.classes.dir}/builtin">
<fileset dir="${lib.dir}/ruby/site_ruby/1.8/builtin">
<include name="**/*.rb"/>
</fileset>
</copy>

<tstamp>
<format property="build.date" pattern="yyyy-MM-dd"/>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/org/jruby/Ruby.java
Expand Up @@ -659,7 +659,7 @@ private void initLibraries() {
registerBuiltin("java.rb", new Library() {
public void load(Ruby runtime) throws IOException {
Java.createJavaModule(runtime);
new BuiltinScript("javasupport").load(runtime);
runtime.getLoadService().smartLoad("builtin/javasupport");
RubyClassPathVariable.createClassPathVariable(runtime);
}
});
Expand Down

0 comments on commit f2ce942

Please sign in to comment.