Prefer rb_funcall2() over rb_funcall().
[ruby-eet.git] / lib / eet.rb
index 483ac5543b6030ca137a956518fb884d00534fb4..5a2d06a2aa8788bf846fd095418299e174961f93 100644 (file)
@@ -92,19 +92,10 @@ class Hash # :nodoc:
 end
 
 module Eet
-       VERSION = "0.1.3"
+       VERSION = "0.1.4"
 
        class ChunkError < EetError; end
 
-       class File
-               def list(glob = "*")
-                       warn "Eet::File#list is deprecated, " +
-                            "use Eet::File#entries or Eet::File#[] instead"
-
-                       self[glob]
-               end
-       end
-
        class Stream # :nodoc:
                def initialize(chunk = nil)
                        super(chunk.nil? ? 0 : 1, chunk)