diff -ur allinoneruby-0.2.5.tar.gz/allinoneruby/CHANGELOG allinoneruby-0.2.6.tar.gz/allinoneruby/CHANGELOG
--- allinoneruby-0.2.5.tar.gz/allinoneruby/CHANGELOG	2005-06-21 00:02:16.000000000 +0200
+++ allinoneruby-0.2.6.tar.gz/allinoneruby/CHANGELOG	2005-08-06 13:00:21.000000000 +0200
@@ -1,5 +1,11 @@
 ----------------------------------------------------------------
 
+0.2.6 - 06.08.2005
+
+* Updated with to the last EEE (from RubyScript2Exe).
+
+----------------------------------------------------------------
+
 0.2.5 - 21.06.2005
 
 * Fixed a bug concerning --site handling.
diff -ur allinoneruby-0.2.5.tar.gz/allinoneruby/ev/ftools.rb allinoneruby-0.2.6.tar.gz/allinoneruby/ev/ftools.rb
--- allinoneruby-0.2.5.tar.gz/allinoneruby/ev/ftools.rb	2005-06-21 00:02:54.000000000 +0200
+++ allinoneruby-0.2.6.tar.gz/allinoneruby/ev/ftools.rb	2005-08-06 13:02:00.000000000 +0200
@@ -84,7 +84,7 @@
       res += [entry]	if mask.nil? or entry =~ mask
     end
 
-    res
+    res.sort
   end
 end
 
diff -ur allinoneruby-0.2.5.tar.gz/allinoneruby/ev/oldandnewlocation.rb allinoneruby-0.2.6.tar.gz/allinoneruby/ev/oldandnewlocation.rb
--- allinoneruby-0.2.5.tar.gz/allinoneruby/ev/oldandnewlocation.rb	2005-06-21 00:02:54.000000000 +0200
+++ allinoneruby-0.2.6.tar.gz/allinoneruby/ev/oldandnewlocation.rb	2005-08-06 13:02:00.000000000 +0200
@@ -3,7 +3,7 @@
 
 ENV["OLDDIR"]	= Dir.pwd								unless ENV.include?("OLDDIR")
 ENV["NEWDIR"]	= File.expand_path(File.dirname($0))					unless ENV.include?("NEWDIR")
-ENV["OWNDIR"]	= File.expand_path(File.dirname((caller[-1] or $0).gsub(/:\d+$/, "")))	unless ENV.include?("OWNDIR")
+ENV["APPDIR"]	= File.expand_path(File.dirname((caller[-1] or $0).gsub(/:\d+$/, "")))	unless ENV.include?("APPDIR")
 ENV["TEMPDIR"]	= dir									unless ENV.include?("TEMPDIR")
 
 class Dir
@@ -77,10 +77,10 @@
 end
 
 begin
-  ownlocation
+  applocation
 rescue NameError
-  def ownlocation(file="")
-    dir	= ENV["OWNDIR"]
+  def applocation(file="")
+    dir	= ENV["APPDIR"]
     res	= nil
 
     if block_given?
diff -ur allinoneruby-0.2.5.tar.gz/allinoneruby/init.rb allinoneruby-0.2.6.tar.gz/allinoneruby/init.rb
--- allinoneruby-0.2.5.tar.gz/allinoneruby/init.rb	2005-06-18 12:17:20.000000000 +0200
+++ allinoneruby-0.2.6.tar.gz/allinoneruby/init.rb	2005-06-21 21:38:34.000000000 +0200
@@ -188,7 +188,7 @@
 end
 
 from	= newlocation(eeeexe)
-from	= ownlocation(eeeexe)	unless File.file?(from)
+from	= applocation(eeeexe)	unless File.file?(from)
 from	= oldlocation(eeeexe)	unless File.file?(from)
 to	= tmplocation(eeeexe)
 
@@ -204,9 +204,9 @@
   eeebin1	= newlocation("eee_darwin")	if darwin?
 
   unless File.file?(eeebin1)
-    eeebin1	= ownlocation("eee.exe")
-    eeebin1	= ownlocation("eee_linux")	if linux?
-    eeebin1	= ownlocation("eee_darwin")	if darwin?
+    eeebin1	= applocation("eee.exe")
+    eeebin1	= applocation("eee_linux")	if linux?
+    eeebin1	= applocation("eee_darwin")	if darwin?
   end
 
   unless File.file?(eeebin1)
diff -ur allinoneruby-0.2.5.tar.gz/allinoneruby/README allinoneruby-0.2.6.tar.gz/allinoneruby/README
--- allinoneruby-0.2.5.tar.gz/allinoneruby/README	2005-05-22 18:09:04.000000000 +0200
+++ allinoneruby-0.2.6.tar.gz/allinoneruby/README	2005-08-06 09:07:21.000000000 +0200
@@ -1,15 +1,25 @@
-The best way to use AllInOneRuby is the RB, not this TAR.GZ.
-The latter is just for playing with the internals. Both are
-available on the site.
+----------------------------------------------------------------
 
- Usage: ruby init.rb [allinoneruby.exe]
-                             [-d|-w|--ruby|--rubyw]
-                             [-s|--site]
-                             [-ns|--nostrip]
-                             [-v|-q|--verbose|--quite]
+As you know, Ruby has to be installed, either by unzipping a
+ZIP-file, or by running an installer. Only then, you can run a
+script. Well, not anymore!
 
-On Linux and Darwin, there's no difference between ruby and
-rubyw.
+AllInOneRuby creates a compressed executable for Windows, Linux
+or Mac OS X (Darwin) that includes both the Ruby interpreter
+and the runtime libraries. Why? Because it's sometimes not
+easy, or possible, or desirable, or allowed to do a complete
+Ruby installation. That's where AllInOneRuby comes in. I always
+have a USB-memory stick with AllInOneRuby in my pocket.
+
+A "just-in-time and temporary installation of Ruby"...
 
 For more information, see
 http://www.erikveen.dds.nl/allinoneruby/index.html .
+
+----------------------------------------------------------------
+
+The best way to use Tar2RubyScript is the RB, not this TAR.GZ.
+The latter is just for playing with the internals. Both are
+available on the site.
+
+----------------------------------------------------------------
diff -ur allinoneruby-0.2.5.tar.gz/allinoneruby/VERSION allinoneruby-0.2.6.tar.gz/allinoneruby/VERSION
--- allinoneruby-0.2.5.tar.gz/allinoneruby/VERSION	2005-06-21 00:02:54.000000000 +0200
+++ allinoneruby-0.2.6.tar.gz/allinoneruby/VERSION	2005-08-06 13:02:00.000000000 +0200
@@ -1 +1 @@
-0.2.5
+0.2.6
Binary files allinoneruby-0.2.5.tar.gz/allinoneruby/eee.exe and allinoneruby-0.2.6.tar.gz/allinoneruby/eee.exe differ
Binary files allinoneruby-0.2.5.tar.gz/allinoneruby/eee_linux and allinoneruby-0.2.6.tar.gz/allinoneruby/eee_linux differ
Binary files allinoneruby-0.2.5.tar.gz/allinoneruby/eeew.exe and allinoneruby-0.2.6.tar.gz/allinoneruby/eeew.exe differ