Skip to content

Instantly share code, notes, and snippets.

@abevoelker
Created October 5, 2011 13:45
Show Gist options
  • Save abevoelker/1264464 to your computer and use it in GitHub Desktop.
Save abevoelker/1264464 to your computer and use it in GitHub Desktop.
JRuby File#size monkeypatch
# Apparently JRuby doesn't have a File#size (instance) method,
# but does have the equivalent class method
if !File.method_defined? :size
class File
def size
File.size(path)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment