You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/xfce-extra/eatmonkey/files/eatmonkey-0.1.4-syntax.patch

14 lines
267 B

Fix compability with Ruby 1.8 by Alex Legler <a3li@gentoo.org>. It helps to actually mark the method static.
--- src/compat18.rb
+++ src/compat18.rb
@@ -12,7 +12,7 @@
end
class Dir
- def exists?(path)
+ def self.exists?(path)
File.directory?(path)
end
end